From 0ac3f84dba8a9561beb1aa6b529a763fab8fb3da Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Sun, 19 Feb 2023 15:33:29 +0100 Subject: [PATCH] fix(dtmm): Fix deploy button staying disabled --- crates/dtmm/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/dtmm/src/state.rs b/crates/dtmm/src/state.rs index a59ffd3..40db069 100644 --- a/crates/dtmm/src/state.rs +++ b/crates/dtmm/src/state.rs @@ -284,7 +284,7 @@ impl AppDelegate for Delegate { Handled::Yes } - cmd if cmd.is(ACTION_START_DEPLOY) => { + cmd if cmd.is(ACTION_FINISH_DEPLOY) => { state.is_deployment_in_progress = false; Handled::Yes }