[DE mobile] Fix Bug 59720
This commit is contained in:
parent
31b901fa6b
commit
1bb6c0e002
|
@ -339,13 +339,6 @@ const EditTabs = props => {
|
||||||
component: <EditHeaderController />
|
component: <EditHeaderController />
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (settings.indexOf('paragraph') > -1) {
|
|
||||||
editors.push({
|
|
||||||
caption: _t.textParagraph,
|
|
||||||
id: 'edit-paragraph',
|
|
||||||
component: <EditParagraphController />
|
|
||||||
})
|
|
||||||
}
|
|
||||||
if (settings.indexOf('text') > -1) {
|
if (settings.indexOf('text') > -1) {
|
||||||
editors.push({
|
editors.push({
|
||||||
caption: _t.textText,
|
caption: _t.textText,
|
||||||
|
@ -353,6 +346,13 @@ const EditTabs = props => {
|
||||||
component: <EditTextController />
|
component: <EditTextController />
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
if (settings.indexOf('paragraph') > -1) {
|
||||||
|
editors.push({
|
||||||
|
caption: _t.textParagraph,
|
||||||
|
id: 'edit-paragraph',
|
||||||
|
component: <EditParagraphController />
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue