From d72afc82df0056a65463ea587d3be3d83adce55f Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Mon, 9 Jan 2023 20:32:43 +1300 Subject: [PATCH] bugfix (post tag carryover) --- src/ui/feed.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/feed.rs b/src/ui/feed.rs index 48d3fe56..a8f4bc0d 100644 --- a/src/ui/feed.rs +++ b/src/ui/feed.rs @@ -163,11 +163,13 @@ pub(super) fn update(app: &mut GossipUi, ctx: &Context, frame: &mut eframe::Fram } } app.draft = "".to_owned(); + app.draft_tags = vec![]; app.replying_to = None; } if ui.button("Cancel").clicked() { app.draft = "".to_owned(); + app.draft_tags = vec![]; app.replying_to = None; }