Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit e4ede85

Browse files
Merge branch 'master' into fix-dash-sizing
2 parents f0868b4 + 27828f6 commit e4ede85

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/components/src/table/table.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ export class TableComponent
240240

241241
if (this.dataSource && changes.data) {
242242
// The dataSource changes on refresh. Only reassign if already initialized (this.dataSource !== undefined)
243+
this.rowStateSubject.next(undefined);
243244
this.dataSource = this.buildDataSource();
244245
}
245246
}

projects/distributed-tracing/src/shared/components/filter-bar/filter-bar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class FilterBarComponent implements OnChanges {
8383
public internalFilters: Filter[] = [];
8484
public readonly instructions: string =
8585
'Select <b>one or more</b> parameters to filter by. The value is ' +
86-
'<b>case sensitive</b>. Examples: <b>userIdentifier = [email protected]</b> or <b>requestMethod != PUT</b>';
86+
'<b>case sensitive</b>. Examples: <b>Duration >= 10</b> or <b>Service Name = dataservice</b>';
8787

8888
public constructor(
8989
private readonly changeDetector: ChangeDetectorRef,

0 commit comments

Comments
 (0)