@@ -160,7 +160,7 @@ export default function FilterControls({
160160 < b > Filters</ b >
161161 { hasSelection && (
162162 < FilterToggle
163- label = { `Remove ${ selectedCount } selected annotation filter ` }
163+ label = { `Clear filter: ${ selectedCount } selected` }
164164 description = { `Show only the ${ selectedCount } selected annotations. Press to clear this filter and show all annotations.` }
165165 active = { true }
166166 setActive = { ( ) => store . clearSelection ( ) }
@@ -170,7 +170,7 @@ export default function FilterControls({
170170 { focusFilters . user && (
171171 < FilterToggle
172172 icon = { ProfileIcon }
173- label = { `By ${ focusFilters . user . display } ` }
173+ label = { `Clear filter: by author ${ focusFilters . user . display } ` }
174174 description = { `Show annotations by ${ focusFilters . user . display } . Press to clear this filter.` }
175175 active = { focusActive . has ( 'user' ) }
176176 // When a selection exists, it replaces other filters.
@@ -182,7 +182,7 @@ export default function FilterControls({
182182 { focusFilters . page && (
183183 < FilterToggle
184184 icon = { FileGenericIcon }
185- label = { `Pages ${ focusFilters . page . display } ` }
185+ label = { `Clear filter: pages ${ focusFilters . page . display } ` }
186186 description = { `Show annotations on pages ${ focusFilters . page . display } . Press to clear this filter.` }
187187 active = { focusActive . has ( 'page' ) }
188188 disabled = { hasSelection }
@@ -193,7 +193,7 @@ export default function FilterControls({
193193 { focusFilters . cfi && (
194194 < FilterToggle
195195 icon = { FileGenericIcon }
196- label = "Selected chapter"
196+ label = "Clear filter: selected chapter"
197197 description = "Show annotations on selected book chapter(s). Press to clear this filter."
198198 active = { focusActive . has ( 'cfi' ) }
199199 disabled = { hasSelection }
0 commit comments