File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/observability/src/shared/dashboard/widgets/table Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -541,13 +541,13 @@ export class TableWidgetRendererComponent
541541
542542 private getViewPreferences ( ) : Observable < TableWidgetViewPreferences > {
543543 return isNonEmptyString ( this . model . viewId )
544- ? this . preferenceService . get < TableWidgetViewPreferences > ( this . model . viewId ! , { } ) . pipe ( first ( ) )
544+ ? this . preferenceService . get < TableWidgetViewPreferences > ( this . model . viewId , { } ) . pipe ( first ( ) )
545545 : of ( { } ) ;
546546 }
547547
548548 private setViewPreferences ( preferences : TableWidgetViewPreferences ) : void {
549549 if ( isNonEmptyString ( this . model . viewId ) ) {
550- this . preferenceService . set ( this . model . viewId ! , preferences ) ;
550+ this . preferenceService . set ( this . model . viewId , preferences ) ;
551551 }
552552 }
553553
You can’t perform that action at this time.
0 commit comments