diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-09 15:15:49 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 09:24:54 -0400 |
| commit | 50bbd6f464fd32d3ce345681c6448ef963fb6e81 (patch) | |
| tree | d29ac42d5faaf2c4beb3b8ef3f138729a09de7bf /modules/utilities | |
| parent | only show active workspaces, fix colors (diff) | |
| download | caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.tar.gz caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.tar.bz2 caelestia-shell-50bbd6f464fd32d3ce345681c6448ef963fb6e81.zip | |
remove more stuffff
Diffstat (limited to 'modules/utilities')
| -rw-r--r-- | modules/utilities/cards/Toggles.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/utilities/cards/Toggles.qml b/modules/utilities/cards/Toggles.qml index d610586..4777648 100644 --- a/modules/utilities/cards/Toggles.qml +++ b/modules/utilities/cards/Toggles.qml @@ -20,13 +20,13 @@ StyledRect { return Config.utilities.quickToggles.filter(item => { if (!item.enabled) return false; - + if (seenIds.has(item.id)) { return false; } if (item.id === "vpn") { - return Config.utilities.vpn.provider.some(p => + return Config.utilities.vpn.provider.some(p => typeof p === "object" ? (p.enabled === true) : false ); } |