diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-25 17:48:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 17:48:39 -0500 |
commit | ec495bd7b23f0326fa9898a1af79ac38270f91fb (patch) | |
tree | 2dcedcd3c0beeeb9831bbbada816cc9ab45d4a5a /ext/data/schemas/options-schema.json | |
parent | 6bda81b4220cf6057f24e5b08aa9a62e4e535bc2 (diff) |
Improve frequency display (#1438)
* Add frequencyDisplayMode option
* Update tests
* Add setting
* Update frequency display styles
* Improve wrapping
Diffstat (limited to 'ext/data/schemas/options-schema.json')
-rw-r--r-- | ext/data/schemas/options-schema.json | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index f4f5d0ca..6d6c8536 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -271,6 +271,11 @@ "type": "string", "enum": ["left", "right", "top", "bottom"], "default": "top" + }, + "frequencyDisplayMode": { + "type": "string", + "enum": ["tags", "tags-grouped", "split-tags", "split-tags-grouped", "inline-list", "list"], + "default": "split-tags-grouped" } } }, |