Fix typo in text-serializers-from-schema function

This commit is contained in:
Steven DeMartini
2022-05-02 13:01:07 -07:00
committed by Dominik
parent 155955c9a9
commit 819622c202
5 changed files with 8 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ import { getHTMLFromFragment } from './helpers/getHTMLFromFragment'
import { getText } from './helpers/getText'
import { isNodeEmpty } from './helpers/isNodeEmpty'
import { resolveFocusPosition } from './helpers/resolveFocusPosition'
import { getTextSeralizersFromSchema } from './helpers/getTextSeralizersFromSchema'
import { getTextSerializersFromSchema } from './helpers/getTextSerializersFromSchema'
import { createStyleTag } from './utilities/createStyleTag'
import { isFunction } from './utilities/isFunction'
import { CommandManager } from './CommandManager'
@@ -436,7 +436,7 @@ export class Editor extends EventEmitter<EditorEvents> {
blockSeparator,
textSerializers: {
...textSerializers,
...getTextSeralizersFromSchema(this.schema),
...getTextSerializersFromSchema(this.schema),
},
})
}