Fix: show tags that will be applied if setting is 'full'

This commit is contained in:
Pieter Vander Vennet 2023-06-11 11:50:35 +02:00
parent 81ac619f9b
commit 0b826612e9
2 changed files with 4 additions and 2 deletions

View file

@ -34,7 +34,8 @@ export default class UserRelatedState {
public readonly mangroveIdentity: MangroveIdentity
public readonly installedUserThemes: Store<string[]>
public readonly showAllQuestionsAtOnce: UIEventSource<boolean>
public readonly showTags: UIEventSource<"no" | undefined | "always" | "yes">;
public static readonly SHOW_TAGS_VALUES = ["always","yes","full"] as const
public readonly showTags: UIEventSource<"no" | undefined | "always" | "yes" | "full">;
public readonly homeLocation: FeatureSource
public readonly language: UIEventSource<string>
/**