Compare commits

...

2 Commits

Author SHA1 Message Date
Anang Yusman 2b1ce75470 update 2025-09-24 16:42:47 +08:00
Anang Yusman 81f46414bb fix 2025-09-24 16:41:59 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import { CKEditor } from "@ckeditor/ckeditor5-react";
import Editor from "ckeditor5-custom-build"; import Editor from "ckeditor5-custom-build";
function CustomEditor(props) { function CustomEditor(props) {
const maxHeight = props.maxHeight || 600; const maxHeight = props.maxHeight || 600;
return ( return (
<div className="ckeditor-wrapper"> <div className="ckeditor-wrapper">
@ -168,4 +168,4 @@ function CustomEditor(props) {
); );
} }
export default CustomEditor; export default CustomEditor;