fix(dtmm): Fix deploy button staying disabled

This commit is contained in:
Lucas Schwiderski 2023-02-19 15:33:29 +01:00
parent 560e5496bc
commit 0ac3f84dba
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -284,7 +284,7 @@ impl AppDelegate<State> 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
}