@visns-studio/visns-components 3.0.5 → 3.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/crm/Field.jsx +2 -3
- package/package.json +1 -1
package/components/crm/Field.jsx
CHANGED
|
@@ -711,8 +711,9 @@ function Field({
|
|
|
711
711
|
onChangeRicheditor(e, value, settings.id);
|
|
712
712
|
}}
|
|
713
713
|
onInit={(evt, editor) => (editorRef.current = editor)}
|
|
714
|
-
|
|
714
|
+
value={inputValue || ''}
|
|
715
715
|
init={{
|
|
716
|
+
branding: false,
|
|
716
717
|
height: 500,
|
|
717
718
|
menubar: false,
|
|
718
719
|
plugins: [
|
|
@@ -732,8 +733,6 @@ function Field({
|
|
|
732
733
|
'media',
|
|
733
734
|
'table',
|
|
734
735
|
'code',
|
|
735
|
-
'help',
|
|
736
|
-
'wordcount',
|
|
737
736
|
],
|
|
738
737
|
toolbar:
|
|
739
738
|
'undo redo | blocks | ' +
|
package/package.json
CHANGED