diff --git a/src/ui/relays.rs b/src/ui/relays.rs index a18dea71..706d9f96 100644 --- a/src/ui/relays.rs +++ b/src/ui/relays.rs @@ -71,6 +71,8 @@ fn render_relay(ui: &mut Ui, relay: &DbRelay, bold: bool) { if bold { rt = rt.strong(); } ui.label(rt); + ui.label(&format!("Success={} Failure={}", relay.success_count, relay.failure_count)); + ui.with_layout(Layout::right_to_left(Align::Center), |ui| { let mut post = relay.post; // checkbox needs a mutable state variable.