File tree 3 files changed +7
-1
lines changed
src/multipleHistoricalSessions
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ export default {
256
256
this .closeOverlay ();
257
257
},
258
258
closeOverlay () {
259
+ this .table .clearColumnFilters ();
259
260
if (this .overlay ) {
260
261
this .overlay .dismiss ();
261
262
delete this .overlay ;
Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ export default class SessionTable extends TelemetryTable {
95
95
this . tableRows . clearRowsFromTableAndFilter ( rows ) ;
96
96
}
97
97
98
+ clearColumnFilters ( ) {
99
+ Object . keys ( this . tableRows . columnFilters )
100
+ . forEach ( filter => this . tableRows . setColumnFilter ( filter , '' ) ) ;
101
+ }
102
+
98
103
clearAndUpdateData ( data ) {
99
104
this . data = data ;
100
105
this . clearData ( ) ;
Original file line number Diff line number Diff line change 132
132
"type" : " someSessionType" ,
133
133
"description" : " Testing session for datas" ,
134
134
"user" : " vista_test" ,
135
- "host" : " testbed1 " ,
135
+ "host" : " testbed2 " ,
136
136
"downlink_connection_type" : " " ,
137
137
"uplink_connection_type" : " " ,
138
138
"start_time" : " 2016-01-01T12:14:33" ,
You can’t perform that action at this time.
0 commit comments