File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,8 @@ function toggleAxisHighlight(state: AxisHighlight) {
310310 @change =" step += 1"
311311 @mouseenter =" toggleAxisHighlight('x')"
312312 @mouseleave =" toggleAxisHighlight(null)"
313- @blur =" toggleAxisHighlight(null)"
313+ @focusin =" toggleAxisHighlight('x')"
314+ @focusout =" toggleAxisHighlight(null)"
314315 />
315316 <SelectField
316317 class =" w-full"
@@ -322,8 +323,9 @@ function toggleAxisHighlight(state: AxisHighlight) {
322323 block
323324 @change =" step += 1"
324325 @mouseenter =" toggleAxisHighlight('y')"
325- @mouseleave =" toggleAxisHighlight(null)"
326- @blur =" toggleAxisHighlight(null)"
326+ @focus =" toggleAxisHighlight('y')"
327+ @focusin =" toggleAxisHighlight('y')"
328+ @focusout =" toggleAxisHighlight(null)"
327329 />
328330 </div >
329331
You can’t perform that action at this time.
0 commit comments