network + ui: stratum settings setup and list ui, pass platform callbacks to network tabs, add horizontal line view

This commit is contained in:
ardocrat
2023-06-21 02:13:47 +03:00
parent 7dba27e6d1
commit 4ad134c5e3
10 changed files with 249 additions and 140 deletions
+2 -2
View File
@@ -221,13 +221,13 @@ impl Node {
};
if Node::is_restarting() {
return t!("sync_status.server_restarting")
return t!("sync_status.node_restarting")
}
let sync_status = Self::get_sync_status();
if sync_status.is_none() {
return t!("sync_status.server_down")
return t!("sync_status.node_down")
}
match sync_status.unwrap() {