snowball ui fiix

This commit is contained in:
null 2026-05-14 03:23:52 -05:00
parent ce22139bb3
commit 7aff0d0283
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ function useSortable(items, setItems, setDirty) {
const onPointerDown = useCallback((e, index) => {
// Only trigger on the grip handle (data-grip attr)
if (!e.currentTarget.dataset.grip) return;
if (!e.currentTarget.hasAttribute('data-grip')) return;
// Ignore right-click
if (e.button !== undefined && e.button !== 0) return;