@@ -288,7 +288,7 @@ export class NotificationTemplateRenderer extends Disposable {
288288
289289 private static readonly SEVERITIES : Array < 'info' | 'warning' | 'error' > = [ 'info' , 'warning' , 'error' ] ;
290290
291- private readonly inputDisposeables = this . _register ( new DisposableStore ( ) ) ;
291+ private readonly inputDisposables = this . _register ( new DisposableStore ( ) ) ;
292292
293293 constructor (
294294 private template : INotificationTemplateData ,
@@ -308,7 +308,7 @@ export class NotificationTemplateRenderer extends Disposable {
308308 }
309309
310310 setInput ( notification : INotificationViewItem ) : void {
311- this . inputDisposeables . clear ( ) ;
311+ this . inputDisposables . clear ( ) ;
312312
313313 this . render ( notification ) ;
314314 }
@@ -317,7 +317,7 @@ export class NotificationTemplateRenderer extends Disposable {
317317
318318 // Container
319319 toggleClass ( this . template . container , 'expanded' , notification . expanded ) ;
320- this . inputDisposeables . add ( addDisposableListener ( this . template . container , EventType . MOUSE_UP , e => {
320+ this . inputDisposables . add ( addDisposableListener ( this . template . container , EventType . MOUSE_UP , e => {
321321 if ( e . button === 1 /* Middle Button */ ) {
322322 EventHelper . stop ( e ) ;
323323
@@ -344,7 +344,7 @@ export class NotificationTemplateRenderer extends Disposable {
344344 this . renderProgress ( notification ) ;
345345
346346 // Label Change Events
347- this . inputDisposeables . add ( notification . onDidLabelChange ( event => {
347+ this . inputDisposables . add ( notification . onDidLabelChange ( event => {
348348 switch ( event . kind ) {
349349 case NotificationViewItemLabelKind . SEVERITY :
350350 this . renderSeverity ( notification ) ;
@@ -370,7 +370,7 @@ export class NotificationTemplateRenderer extends Disposable {
370370 clearNode ( this . template . message ) ;
371371 this . template . message . appendChild ( NotificationMessageRenderer . render ( notification . message , {
372372 callback : link => this . openerService . open ( URI . parse ( link ) ) ,
373- toDispose : this . inputDisposeables
373+ toDispose : this . inputDisposables
374374 } ) ) ;
375375
376376 const messageOverflows = notification . canCollapse && ! notification . expanded && this . template . message . scrollWidth > this . template . message . clientWidth ;
@@ -395,7 +395,7 @@ export class NotificationTemplateRenderer extends Disposable {
395395 if ( isNonEmptyArray ( notification . actions . secondary ) ) {
396396 const configureNotificationAction = this . instantiationService . createInstance ( ConfigureNotificationAction , ConfigureNotificationAction . ID , ConfigureNotificationAction . LABEL , notification . actions . secondary ) ;
397397 actions . push ( configureNotificationAction ) ;
398- this . inputDisposeables . add ( configureNotificationAction ) ;
398+ this . inputDisposables . add ( configureNotificationAction ) ;
399399 }
400400
401401 // Expand / Collapse
@@ -441,7 +441,7 @@ export class NotificationTemplateRenderer extends Disposable {
441441 const action = notification . actions . primary ! [ index ] ;
442442 button . label = action . label ;
443443
444- this . inputDisposeables . add ( button . onDidClick ( e => {
444+ this . inputDisposables . add ( button . onDidClick ( e => {
445445 EventHelper . stop ( e , true ) ;
446446
447447 // Run action
@@ -453,10 +453,10 @@ export class NotificationTemplateRenderer extends Disposable {
453453 }
454454 } ) ) ;
455455
456- this . inputDisposeables . add ( attachButtonStyler ( button , this . themeService ) ) ;
456+ this . inputDisposables . add ( attachButtonStyler ( button , this . themeService ) ) ;
457457 } ) ;
458458
459- this . inputDisposeables . add ( buttonGroup ) ;
459+ this . inputDisposables . add ( buttonGroup ) ;
460460 }
461461 }
462462
0 commit comments