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 c5b3b0f commit 2f3b6e6Copy full SHA for 2f3b6e6
1 file changed
app/components/Compare/FacetScatterChart.vue
@@ -310,7 +310,8 @@ function toggleAxisHighlight(state: AxisHighlight) {
310
@change="step += 1"
311
@mouseenter="toggleAxisHighlight('x')"
312
@mouseleave="toggleAxisHighlight(null)"
313
- @blur="toggleAxisHighlight(null)"
+ @focusin="toggleAxisHighlight('x')"
314
+ @focusout="toggleAxisHighlight(null)"
315
/>
316
<SelectField
317
class="w-full"
@@ -322,8 +323,9 @@ function toggleAxisHighlight(state: AxisHighlight) {
322
323
block
324
325
@mouseenter="toggleAxisHighlight('y')"
- @mouseleave="toggleAxisHighlight(null)"
326
+ @focus="toggleAxisHighlight('y')"
327
+ @focusin="toggleAxisHighlight('y')"
328
329
330
</div>
331
0 commit comments