@@ -105,36 +105,36 @@ const EditorInstance = memo(function ({
105
105
...pluginOptions
106
106
} ,
107
107
modal : {
108
- ... options . modal ,
109
- custom : ! ! editorOptions . customModal
108
+ custom : ! ! editorOptions . customModal ,
109
+ ... options . modal
110
110
} ,
111
111
assetManager : {
112
- ... options . assetManager ,
113
- custom : ! ! editorOptions . customAssets
112
+ custom : ! ! editorOptions . customAssets ,
113
+ ... options . assetManager
114
114
} ,
115
115
styleManager : {
116
- ... options . styleManager ,
117
- custom : ! ! editorOptions . customStyles
116
+ custom : ! ! editorOptions . customStyles ,
117
+ ... options . styleManager
118
118
} ,
119
119
blockManager : {
120
- ... options . blockManager ,
121
- custom : ! ! editorOptions . customBlocks
120
+ custom : ! ! editorOptions . customBlocks ,
121
+ ... options . blockManager
122
122
} ,
123
123
richTextEditor : {
124
- ... options . richTextEditor ,
125
- custom : ! ! editorOptions . customRte
124
+ custom : ! ! editorOptions . customRte ,
125
+ ... options . richTextEditor
126
126
} ,
127
127
layerManager : {
128
- ... options . layerManager ,
129
- custom : ! ! editorOptions . customLayers
128
+ custom : ! ! editorOptions . customLayers ,
129
+ ... options . layerManager
130
130
} ,
131
131
traitManager : {
132
- ... options . traitManager ,
133
- custom : ! ! editorOptions . customTraits
132
+ custom : ! ! editorOptions . customTraits ,
133
+ ... options . traitManager
134
134
} ,
135
135
selectorManager : {
136
- ... options . selectorManager ,
137
- custom : ! ! editorOptions . customSelectors
136
+ custom : ! ! editorOptions . customSelectors ,
137
+ ... options . selectorManager
138
138
} ,
139
139
container : canvasContainer || defaultContainer ,
140
140
customUI : ! ! canvasContainer ,
0 commit comments