Skip to content

Commit

Permalink
Merge pull request #118 from dbcls/fix/hide-legend-and-filter
Browse files Browse the repository at this point in the history
初期状態では判例とフィルターを隠す
  • Loading branch information
sasaujp authored Feb 3, 2021
2 parents 0e6fdfd + 89e7900 commit cbc2846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/src/ts/visualizer/reducers/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface FilterState {

const initialState: FilterState = {
lowerLimitOfClassEntities: 0,
showingConditions: true,
showingConditions: false,
}

export default function legend(
Expand Down
2 changes: 1 addition & 1 deletion node/src/ts/visualizer/reducers/legend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface LegendState {
}

const initialState: LegendState = {
showingLegend: true,
showingLegend: false,
}

export default function legend(
Expand Down

0 comments on commit cbc2846

Please sign in to comment.