aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-02-11 12:07:30 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-02-11 17:43:49 +0000
commit226257cd862451abccc28894e2b0a3270c6790e9 (patch)
tree3c6516bfe1bcc258ce40afa6af6cbd9582961ad9 /src/lib
parentUpdate dependabot.yml to handle both app and GHA dependencies (diff)
downloadferdium-app-226257cd862451abccc28894e2b0a3270c6790e9.tar.gz
ferdium-app-226257cd862451abccc28894e2b0a3270c6790e9.tar.zst
ferdium-app-226257cd862451abccc28894e2b0a3270c6790e9.zip
rename features to better convey type
(without migration)
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Menu.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Menu.ts b/src/lib/Menu.ts
index 8ad4441d2..12dc1e42c 100644
--- a/src/lib/Menu.ts
+++ b/src/lib/Menu.ts
@@ -709,7 +709,7 @@ class FranzMenu implements StoresProps {
709 const { intl } = window['ferdium']; 709 const { intl } = window['ferdium'];
710 const locked = 710 const locked =
711 this.stores.settings.app.locked && 711 this.stores.settings.app.locked &&
712 this.stores.settings.app.lockingFeatureEnabled && 712 this.stores.settings.app.isLockingFeatureEnabled &&
713 this.stores.user.isLoggedIn; 713 this.stores.user.isLoggedIn;
714 const { actions } = this; 714 const { actions } = this;
715 const tpl = titleBarTemplateFactory(intl, locked); 715 const tpl = titleBarTemplateFactory(intl, locked);
@@ -847,7 +847,7 @@ class FranzMenu implements StoresProps {
847 accelerator: `${lockFerdiumShortcutKey()}`, 847 accelerator: `${lockFerdiumShortcutKey()}`,
848 enabled: 848 enabled:
849 this.stores.user.isLoggedIn && 849 this.stores.user.isLoggedIn &&
850 this.stores.settings.app.lockingFeatureEnabled, 850 this.stores.settings.app.isLockingFeatureEnabled,
851 click() { 851 click() {
852 actions.settings.update({ 852 actions.settings.update({
853 type: 'app', 853 type: 'app',