We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e91cd0 commit 75945ebCopy full SHA for 75945eb
app/components/Compare/FacetSelector.vue
@@ -25,8 +25,12 @@ function isCategoryNoneSelected(category: string): boolean {
25
}
26
27
const liveRegionText = ref('')
28
+const clearLiveRegion = debounce(() => {
29
+ liveRegionText.value = ''
30
+}, 250)
31
const updateLiveRegion = debounce((message: string) => {
32
liveRegionText.value = message
33
+ clearLiveRegion()
34
}, 250)
35
36
function selectAllFacet(category: string) {
0 commit comments