[DE mobile] Fix Bug 59720

This commit is contained in:
SergeyEzhin 2022-11-18 16:46:11 +04:00
parent 31b901fa6b
commit 1bb6c0e002

View file

@ -339,13 +339,6 @@ const EditTabs = props => {
component: <EditHeaderController />
})
}
if (settings.indexOf('paragraph') > -1) {
editors.push({
caption: _t.textParagraph,
id: 'edit-paragraph',
component: <EditParagraphController />
})
}
if (settings.indexOf('text') > -1) {
editors.push({
caption: _t.textText,
@ -353,6 +346,13 @@ const EditTabs = props => {
component: <EditTextController />
})
}
if (settings.indexOf('paragraph') > -1) {
editors.push({
caption: _t.textParagraph,
id: 'edit-paragraph',
component: <EditParagraphController />
})
}
}
return (