From d5482f3076c2ef87511797a21ca96266036f6afd Mon Sep 17 00:00:00 2001 From: Katja Lutz Date: Wed, 22 Jun 2022 23:36:31 +0200 Subject: [PATCH] fix: enable sortablejs forceFallback for better chrome support --- src/components/Settings/Positions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Settings/Positions.tsx b/src/components/Settings/Positions.tsx index 57c49a5..54d7648 100644 --- a/src/components/Settings/Positions.tsx +++ b/src/components/Settings/Positions.tsx @@ -71,7 +71,7 @@ export const PositionsSettings: Component = () => { dragClass: "sortable-drag-card", ghostClass: "sortable-ghost-card", filter: ".drag-disabled", - // forceFallback: true, + forceFallback: true, onEnd: (evt) => { const oldIndex = evt.oldIndex; const newIndex = evt.newIndex;