File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
projects/distributed-tracing/src/shared/dashboard/widgets/table Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -273,14 +273,14 @@ export class TableWidgetRendererComponent
273
273
274
274
public onSelectChange ( changed : TableSelectChange ) : void {
275
275
if ( changed . values . length === 0 ) {
276
- // tslint:disable-next-line: no-void-expression
277
- return this . selectFilterSubject . next ( this . removeFilters ( changed . select . options [ 0 ] . metaValue . field ) ) ;
276
+ this . selectFilterSubject . next ( this . removeFilters ( changed . select . options [ 0 ] . metaValue . field ) ) ;
277
+
278
+ return ;
278
279
}
279
280
280
281
const tableFilters : TableFilter [ ] = changed . values . map ( ( option : TableFilterControlOption ) => option . metaValue ) ;
281
282
282
- // tslint:disable-next-line: no-void-expression
283
- return this . selectFilterSubject . next ( this . mergeFilters ( toInFilter ( tableFilters ) ) ) ;
283
+ this . selectFilterSubject . next ( this . mergeFilters ( toInFilter ( tableFilters ) ) ) ;
284
284
}
285
285
286
286
public onCheckboxChange ( changed : TableCheckboxChange ) : void {
You can’t perform that action at this time.
0 commit comments