fix: set correct priority when extending extensions, fix #1288

This commit is contained in:
Philipp Kühn
2021-05-10 00:13:32 +02:00
parent bf50af4cf6
commit b4e2b6fc9d
3 changed files with 0 additions and 3 deletions

View File

@@ -236,7 +236,6 @@ export class Extension<Options = any> {
config: ExtensionConfig = {
name: this.name,
priority: 100,
defaultOptions: {},
}

View File

@@ -333,7 +333,6 @@ export class Mark<Options = any> {
config: MarkConfig = {
name: this.name,
priority: 100,
defaultOptions: {},
}

View File

@@ -414,7 +414,6 @@ export class Node<Options = any> {
config: NodeConfig = {
name: this.name,
priority: 100,
defaultOptions: {},
}