From 051762cf8a99dce8c743daaee1f0606b8a82fad9 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Mon, 7 Jul 2025 10:20:41 +0000 Subject: [PATCH] Complete ProjectsView.vue notification migration with TIMEOUTS.MODAL (1 minute) Notification Migration: Replace -1 with TIMEOUTS.MODAL in complex confirm dialog Complex Modal Pattern: NOTIFY_CAMERA_SHARE_METHOD uses custom button text and multiple callbacks Constants Integration: All notification text uses centralized constants Time: 1 minute | Complexity: Simple | Issues: None Testing: Manual required | Validation: Complex modal documented as legitimate raw $notify use case --- src/views/ProjectsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ProjectsView.vue b/src/views/ProjectsView.vue index 9b1b4f8d..04d4214b 100644 --- a/src/views/ProjectsView.vue +++ b/src/views/ProjectsView.vue @@ -662,7 +662,7 @@ export default class ProjectsView extends Vue { noText: NOTIFY_CAMERA_SHARE_METHOD.noText, yesText: NOTIFY_CAMERA_SHARE_METHOD.yesText, }, - -1, + TIMEOUTS.MODAL, ); }