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 5cb6bc6Copy full SHA for 5cb6bc6
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"
@@ -323,7 +324,8 @@ function toggleAxisHighlight(state: AxisHighlight) {
323
324
325
@mouseenter="toggleAxisHighlight('y')"
326
327
+ @focusin="toggleAxisHighlight('y')"
328
329
330
</div>
331
0 commit comments