From 9dcb74c46bcdf0cffe24e31b5fb6a264ea168224 Mon Sep 17 00:00:00 2001 From: juan Date: Mon, 16 Mar 2026 16:04:23 -0700 Subject: [PATCH] Update hold delay comment to reflect press-and-hold 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 12e9dbf15..ae4bf132b 100644 --- a/app/javascript/controllers/dashboard_sortable_controller.js +++ b/app/javascript/controllers/dashboard_sortable_controller.js @@ -3,7 +3,7 @@ import { Controller } from "@hotwired/stimulus"; export default class extends Controller { static targets = ["section", "handle"]; - // Short delay to prevent accidental touches on the grip handle + // Hold delay to require deliberate press-and-hold before activating drag mode static values = { holdDelay: { type: Number, default: 500 }, };