diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-08-20 11:29:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 11:29:31 -0400 |
commit | ada4df1971f8fb0a1efc6d094a5c03cc7fdd4d5b (patch) | |
tree | 8170f1d848d1da85f643288061d3f22aee5a9e96 /ext/data/schemas | |
parent | 0b1ad403471c0c097d08af59717a34691d8bf5b7 (diff) |
Fix invalid default values for popupTheme and popupOuterTheme (#2180)
* Fix invalid default values for popupTheme and popupOuterTheme
* Options update
Diffstat (limited to 'ext/data/schemas')
-rw-r--r-- | ext/data/schemas/options-schema.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 37b32bbf..09398fb0 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -215,12 +215,12 @@ "popupTheme": { "type": "string", "enum": ["light", "dark", "browser"], - "default": "default" + "default": "light" }, "popupOuterTheme": { "type": "string", "enum": ["light", "dark", "browser", "site"], - "default": "default" + "default": "light" }, "customPopupCss": { "type": "string", |