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; }