mirror of
https://github.com/zadam/trilium.git
synced 2025-12-11 09:54:23 +01:00
feat(ckeditor/watchdog): ignore model out of bounds (closes #7739)
This commit is contained in:
parent
a1c5ed9eb5
commit
9ddf4a1308
@ -2,7 +2,10 @@ import { CKEditorError, EditorWatchdog } from "ckeditor5";
|
||||
|
||||
const IGNORED_ERRORS = [
|
||||
// See: https://github.com/TriliumNext/Trilium/issues/5776
|
||||
"TypeError: Cannot read properties of null (reading 'parent')"
|
||||
"TypeError: Cannot read properties of null (reading 'parent')",
|
||||
|
||||
// See: https://github.com/TriliumNext/Trilium/issues/7739
|
||||
"model-nodelist-offset-out-of-bounds"
|
||||
]
|
||||
|
||||
export default class CustomWatchdog extends EditorWatchdog {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user