1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-07 02:53:28 +00:00

added collpase/expand functions to groupings

This commit is contained in:
Kyle Spearrin
2018-11-09 17:44:45 -05:00
parent b4fad203b9
commit 786fa02b90
2 changed files with 37 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ export class ConstantsService {
static readonly installedVersionKey: string = 'installedVersion';
static readonly localeKey: string = 'locale';
static readonly themeKey: string = 'theme';
static readonly collapsedGroupingsKey: string = 'collapsedGroupings';
readonly environmentUrlsKey: string = ConstantsService.environmentUrlsKey;
readonly disableGaKey: string = ConstantsService.disableGaKey;
@@ -27,4 +28,5 @@ export class ConstantsService {
readonly installedVersionKey: string = ConstantsService.installedVersionKey;
readonly localeKey: string = ConstantsService.localeKey;
readonly themeKey: string = ConstantsService.themeKey;
readonly collapsedGroupingsKey: string = ConstantsService.collapsedGroupingsKey;
}