revert working properly well

This commit is contained in:
filipriec
2025-02-28 23:27:16 +01:00
parent f1d2e5c43d
commit a79fa45a6d
4 changed files with 64 additions and 1 deletions

View File

@@ -72,6 +72,15 @@ impl EventHandler {
).await?;
return Ok((should_exit, message));
},
"revert" => {
let message = common::revert(
form_state,
app_terminal,
current_position,
total_count,
).await?;
return Ok((false, message));
},
_ => {}
}
}