bugfix (post tag carryover)

This commit is contained in:
Mike Dilger 2023-01-09 20:32:43 +13:00
parent f2f3855c77
commit d72afc82df
1 changed files with 2 additions and 0 deletions

View File

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