diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-10-19 20:05:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 20:05:45 -0400 |
commit | 23230b8a7c5eb66357d5bcafb4184def13c5954b (patch) | |
tree | 4cfd684091bdccb00993a4302c9d975680eb5770 /ext/bg/js/options.js | |
parent | 91b4feb934f524fc30be9300480ac584b65c6166 (diff) |
Backup controller refactor (#946)
* Update IDs
* Change how default fieldTemplates is assigned
* Ensure no missing fields
* Fix error display during import
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 42a1f3d4..9e89e9bd 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -129,6 +129,10 @@ class OptionsUtil { return this._schemaValidator.getValidValueOrDefault(this._optionsSchema); } + getValidValueOrDefault(options) { + return this._schemaValidator.getValidValueOrDefault(this._optionsSchema, options); + } + createValidatingProxy(options) { return this._schemaValidator.createProxy(options, this._optionsSchema); } |