mirror of
https://github.com/creating2morrow/neveko.git
synced 2024-12-22 19:49:24 +00:00
fix exit button on order form
This commit is contained in:
parent
860d66d215
commit
a8f79eac02
1 changed files with 2 additions and 3 deletions
|
@ -216,9 +216,8 @@ impl eframe::App for MarketApp {
|
||||||
}
|
}
|
||||||
ui.label("\n");
|
ui.label("\n");
|
||||||
if ui.button("Exit").clicked() {
|
if ui.button("Exit").clicked() {
|
||||||
self.products = product::find_all();
|
self.is_ordering = false;
|
||||||
self.is_showing_products = true;
|
self.is_loading = false;
|
||||||
self.is_showing_vendors = false;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue