Fix incorrect event type being dispatched
This commit is contained in:
parent
c3f4c9432f
commit
fc1fc056a2
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ export class ChangedEvent extends Event {
|
||||||
|
|
||||||
/** @param {Change[]} changes */
|
/** @param {Change[]} changes */
|
||||||
constructor(...changes) {
|
constructor(...changes) {
|
||||||
super('change')
|
super('changed')
|
||||||
this.changes = changes
|
this.changes = changes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue