diff --git a/packages/kanban/src/components/KanbanRow.svelte b/packages/kanban/src/components/KanbanRow.svelte index d6766fefafd..42511bb7916 100644 --- a/packages/kanban/src/components/KanbanRow.svelte +++ b/packages/kanban/src/components/KanbanRow.svelte @@ -89,6 +89,7 @@ class:selection={selection !== undefined ? objects[selection]?._id === object._id : false} class:checked={checkedSet.has(object._id)} on:mouseover={mouseAttractor(() => dispatch('obj-focus', object))} + on:mouseenter={mouseAttractor(() => dispatch('obj-focus', object))} on:focus={() => {}} on:contextmenu={(evt) => showMenu(evt, object)} draggable={true} diff --git a/packages/ui/src/components/ListView.svelte b/packages/ui/src/components/ListView.svelte index 8eee49c7d53..7e56b5849ee 100644 --- a/packages/ui/src/components/ListView.svelte +++ b/packages/ui/src/components/ListView.svelte @@ -14,7 +14,7 @@ -->