feat: improve polling recovery and session cleanup
This commit is contained in:
@@ -517,11 +517,16 @@ function autoStartDecisionTagType(code?: string) {
|
||||
return "success";
|
||||
}
|
||||
|
||||
if (code === "failed_startup") {
|
||||
if (code === "failed_startup" || code === "poll_failed") {
|
||||
return "danger";
|
||||
}
|
||||
|
||||
if (code === "skipped_storage" || code === "skipped_active_session" || code === "skipped_debounce") {
|
||||
if (
|
||||
code === "skipped_storage" ||
|
||||
code === "skipped_active_session" ||
|
||||
code === "skipped_debounce" ||
|
||||
code === "poll_failed_transient"
|
||||
) {
|
||||
return "warning";
|
||||
}
|
||||
|
||||
@@ -1242,8 +1247,7 @@ onBeforeUnmount(() => {
|
||||
}
|
||||
|
||||
.rooms-table-shell {
|
||||
margin-inline: -4px;
|
||||
padding-inline: 4px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.rooms-table {
|
||||
|
||||
Reference in New Issue
Block a user