diff --git a/frontend/src/components/dialogs/ConnectionDialog.vue b/frontend/src/components/dialogs/ConnectionDialog.vue index e142437..2aa8ab5 100644 --- a/frontend/src/components/dialogs/ConnectionDialog.vue +++ b/frontend/src/components/dialogs/ConnectionDialog.vue @@ -507,7 +507,7 @@ const pasteFromClipboard = async () => { { } // delay save until drop stopped after 2 seconds -const saveSort = debounce(connectionStore.saveConnectionSorted, 2000, { trailing: true }) +const saveSort = debounce(connectionStore.saveConnectionSorted, 1500, { trailing: true }) const handleDrop = ({ node, dragNode, dropPosition }) => { const [dragNodeSiblings, dragNodeIndex] = findSiblingsAndIndex(dragNode, connectionStore.connections) if (dragNodeSiblings === null || dragNodeIndex === null) {