From 5336ec159feb648a78750aa7bb6a013fc316633d Mon Sep 17 00:00:00 2001 From: juan Date: Wed, 18 Mar 2026 20:22:53 -0700 Subject: [PATCH] Increase touch hold delay to 1000ms for more reliable scroll behavior Co-Authored-By: Claude Opus 4.6 --- app/javascript/controllers/dashboard_sortable_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/controllers/dashboard_sortable_controller.js b/app/javascript/controllers/dashboard_sortable_controller.js index 06731b858..31ba4725b 100644 --- a/app/javascript/controllers/dashboard_sortable_controller.js +++ b/app/javascript/controllers/dashboard_sortable_controller.js @@ -5,7 +5,7 @@ export default class extends Controller { // Hold delay to require deliberate press-and-hold before activating drag mode static values = { - holdDelay: { type: Number, default: 750 }, + holdDelay: { type: Number, default: 1000 }, }; connect() {