Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit c29d12b

Browse files
authored
feat(gui): is:public !is:removed as default filter (#983)
1 parent 15de3a2 commit c29d12b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

api-editor/gui/src/features/ui/uiSlice.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,11 @@ export const initialState: UIState = {
149149
expandedInTreeView: {},
150150
treeViewScrollOffset: 0,
151151

152-
filterString: 'is:public',
152+
filterString: 'is:public !is:removed',
153153
filterList: [
154-
{ filter: 'is:public', name: 'public' },
155-
{ filter: 'is:public usefulness:>0', name: 'useful' },
154+
{ filter: 'is:public !is:removed', name: 'Default' },
155+
{ filter: 'is:public', name: 'Any Public Declaration' },
156+
{ filter: 'is:public usefulness:>0', name: 'Public & Useful Declarations' },
156157
],
157158

158159
heatMapMode: HeatMapMode.None,

0 commit comments

Comments
 (0)