File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments