Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHollyer committed Oct 23, 2023
1 parent ea80d3e commit 36562a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class DataTableComponent implements OnDestroy, AfterContentInit {
@Input() columnCustomizationEnabled!: boolean;
@Input() selectableColumns?: ColumnHeader[];
@Input() columnFilters!: Map<string, DiscreteFilter | IntervalFilter>;
@Input() loading: boolean = false
@Input() loading: boolean = false;

@ContentChildren(HeaderCellComponent)
headerCells!: QueryList<HeaderCellComponent>;
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/webapp/widgets/data_table/data_table_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describe('data table', () => {
fixture.componentInstance.selectableColumns = input.potentialColumns;
}

if(input.loading !== undefined) {
if (input.loading !== undefined) {
fixture.componentInstance.loading = input.loading;
}

Expand Down

0 comments on commit 36562a4

Please sign in to comment.