diff options
author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2024-03-03 05:48:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-03 04:48:57 +0000 |
commit | 5ec2344df95da39cda4ad07cfe5181b05fa24830 (patch) | |
tree | 3774ad807c1b2c301fd0e49ae1c2548e0c4fc6bf /ext/js/data/options-util.js | |
parent | f162884b4cbfa5adf4a4e3dbbbad0d635fb5d603 (diff) |
fix whitespace (#755)
Diffstat (limited to 'ext/js/data/options-util.js')
-rw-r--r-- | ext/js/data/options-util.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index cac2f82d..d89b3370 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -533,7 +533,8 @@ export class OptionsUtil { this._updateVersion24, this._updateVersion25, this._updateVersion26, - this._updateVersion27 + this._updateVersion27, + this._updateVersion28 ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { @@ -1199,6 +1200,13 @@ export class OptionsUtil { await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v27.handlebars'); } + /** + * - Removed whitespace in URL handlebars template. + * @type {import('options-util').UpdateFunction} + */ + async _updateVersion28(options) { + await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v28.handlebars'); + } /** * @param {string} url |