Upgrade dependencies, including Electron 29.1.5.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-03-22 16:12:34 -07:00
parent 47366b7617
commit 0eb4c9236e
6 changed files with 2058 additions and 1547 deletions

View File

@@ -730,7 +730,7 @@ export class ServerManagerView {
await tab.destroy();
delete this.tabs[index];
delete this.tabs[index]; // eslint-disable-line @typescript-eslint/no-array-delete
this.functionalTabs.delete(name);
// Issue #188: If the functional tab was not focused, do not activate another tab.

View File

@@ -29,8 +29,7 @@ export function generateOptionHtml(
disabled?: boolean,
): Html {
const labelHtml = disabled
? // eslint-disable-next-line unicorn/template-indent
html`<label
? html`<label
class="disallowed"
title="Setting locked by system administrator."
></label>`

View File

@@ -88,10 +88,6 @@ export class PreferenceView {
});
break;
}
default: {
((n: never) => n)(navigationItem);
}
}
window.location.hash = `#${navigationItem}`;