diff --git a/docs/migration-7-8.md b/docs/migration-7-8.md index 3804ebc1..0518941e 100644 --- a/docs/migration-7-8.md +++ b/docs/migration-7-8.md @@ -89,12 +89,13 @@ Alternatively you can use the props on the editor component for the same const editor = new Editor({}); editor.enable(); // enable edititng - editor.disable(); // disable editing ``` **After:** +Set the enabled prop to `true` or `false` to enable/disable the editor. + ```html ```