Skip to content

Commit e00467f

Browse files
committed
Fixed typo.
1 parent 4c59e4b commit e00467f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/grid/ko/gridEditor.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class GridEditor {
2929
private ownerDocument: Document;
3030
private selection: GridItem;
3131
private activeLayer: string;
32-
private noificationTimeout: any;
32+
private notificationTimeout: any;
3333

3434
constructor(
3535
private readonly viewManager: ViewManager,
@@ -389,11 +389,11 @@ export class GridEditor {
389389

390390
this.eventManager.dispatchEvent(Events.NotificationRequest, item.displayName);
391391

392-
if (this.noificationTimeout) {
393-
clearTimeout(this.noificationTimeout);
392+
if (this.notificationTimeout) {
393+
clearTimeout(this.notificationTimeout);
394394
}
395395

396-
this.noificationTimeout = setTimeout(() => {
396+
this.notificationTimeout = setTimeout(() => {
397397
this.eventManager.dispatchEvent(Events.NotificationRequest, "selected");
398398
}, 1000);
399399

0 commit comments

Comments
 (0)