Skip to content

Commit

Permalink
Data Table: enable data table by default (#6563)
Browse files Browse the repository at this point in the history
## Motivation for features / changes
This feature has been out for awhile and we have had good feedback.
However, based on the number we believe many user who would find this
useful have not discovered it. This change turns the table on by
default.

It is worth noting that if users have enabled/disabled this in the past
their choices are stored and then will not see any changes unless they
delete their local storage or move to a new computer.

## Detailed steps to verify changes work correctly (as executed by you)
I deleted localStorage, reloaded the page, and observed that is was
enabled. Then disabled, reloaded the page, and observed that it was
still disabled. All is working as expected.
  • Loading branch information
JamesHollyer authored Aug 30, 2023
1 parent f7680b4 commit 5961c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorboard/webapp/metrics/store/metrics_reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ const {initialState, reducers: namespaceContextedReducer} =
tagGroupExpanded: new Map<string, boolean>(),
linkedTimeSelection: null,
linkedTimeEnabled: false,
stepSelectorEnabled: false,
stepSelectorEnabled: true,
rangeSelectionEnabled: false,
singleSelectionHeaders: [
{
Expand Down

0 comments on commit 5961c76

Please sign in to comment.