fix(frontend): fix statusbar type errors and store logic

This commit is contained in:
spinline
2026-02-03 23:36:05 +03:00
parent 563ffad3ab
commit f3c49fb2cf
2 changed files with 3 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ pub fn provide_torrent_store() {
t.error_message = error_message;
}
if let Some(label) = update.label {
t.label = label;
t.label = Some(label);
}
}
});