[SSE mobile] Correct edit view
This commit is contained in:
parent
2f9b24887a
commit
02a98bc463
|
@ -350,35 +350,35 @@ const EditTabs = props => {
|
||||||
component: <EditCellController />
|
component: <EditCellController />
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (!store.isLockedShape && settings.indexOf('shape') > -1) {
|
if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('shape') > -1) {
|
||||||
editors.push({
|
editors.push({
|
||||||
caption: _t.textShape,
|
caption: _t.textShape,
|
||||||
id: 'edit-shape',
|
id: 'edit-shape',
|
||||||
component: <EditShapeController />
|
component: <EditShapeController />
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if(!wsProps.Objects) {
|
if (!(wsProps.Objects && store.isLockedText) && settings.indexOf('text') > -1) {
|
||||||
if (settings.indexOf('image') > -1) {
|
|
||||||
editors.push({
|
|
||||||
caption: _t.textImage,
|
|
||||||
id: 'edit-image',
|
|
||||||
component: <EditImageController />
|
|
||||||
})
|
|
||||||
}
|
|
||||||
if (settings.indexOf('text') > -1) {
|
|
||||||
editors.push({
|
editors.push({
|
||||||
caption: _t.textText,
|
caption: _t.textText,
|
||||||
id: 'edit-text',
|
id: 'edit-text',
|
||||||
component: <EditTextController />
|
component: <EditTextController />
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (settings.indexOf('chart') > -1) {
|
if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('chart') > -1) {
|
||||||
editors.push({
|
editors.push({
|
||||||
caption: _t.textChart,
|
caption: _t.textChart,
|
||||||
id: 'edit-chart',
|
id: 'edit-chart',
|
||||||
component: <EditChartController />
|
component: <EditChartController />
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('image') > -1) {
|
||||||
|
editors.push({
|
||||||
|
caption: _t.textImage,
|
||||||
|
id: 'edit-image',
|
||||||
|
component: <EditImageController />
|
||||||
|
})
|
||||||
|
}
|
||||||
|
if(!wsProps.Objects) {
|
||||||
if (settings.indexOf('hyperlink') > -1 || (props.hyperinfo && props.isAddShapeHyperlink)) {
|
if (settings.indexOf('hyperlink') > -1 || (props.hyperinfo && props.isAddShapeHyperlink)) {
|
||||||
editors.push({
|
editors.push({
|
||||||
caption: _t.textHyperlink,
|
caption: _t.textHyperlink,
|
||||||
|
|
Loading…
Reference in a new issue