Fix incorrect event type being dispatched

This commit is contained in:
Talia 2025-02-20 23:00:37 +01:00
parent c3f4c9432f
commit fc1fc056a2
Signed by: darkwiiplayer
GPG key ID: 7808674088232B3E

View file

@ -38,7 +38,7 @@ export class ChangedEvent extends Event {
/** @param {Change[]} changes */
constructor(...changes) {
super('change')
super('changed')
this.changes = changes
}