chore(react/ribbon): fix size of attribute widget

This commit is contained in:
Elian Doran
2025-08-23 13:13:01 +03:00
parent 62372ed4c5
commit 12053e75bb
3 changed files with 10 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ interface CKEditorOpts {
disableNewlines?: boolean;
disableSpellcheck?: boolean;
onChange?: (newValue?: string) => void;
onClick?: (e, pos?: ModelPosition | null) => void;
onClick?: (e: MouseEvent, pos?: ModelPosition | null) => void;
}
export default function CKEditor({ currentValue, className, tabIndex, editor, config, disableNewlines, disableSpellcheck, onChange, onClick }: CKEditorOpts) {