diff --git a/src/app.rs b/src/app.rs index d12b7e4..20d5c04 100644 --- a/src/app.rs +++ b/src/app.rs @@ -3705,7 +3705,8 @@ impl Application for App { }, auth_tx: auth_tx.clone(), }) - }); + }) + .on_submit(Message::DialogComplete); if !id_assigned { input = input.id(self.dialog_text_input.clone()); id_assigned = true; @@ -3726,7 +3727,8 @@ impl Application for App { }, auth_tx: auth_tx.clone(), }) - }); + }) + .on_submit(Message::DialogComplete); if !id_assigned { input = input.id(self.dialog_text_input.clone()); id_assigned = true; @@ -3748,7 +3750,8 @@ impl Application for App { }, auth_tx: auth_tx.clone(), }) - }); + }) + .on_submit(Message::DialogComplete); if !id_assigned { input = input.id(self.dialog_text_input.clone()); }