diff --git a/client/components/modals/BatchQuickMatchModel.vue b/client/components/modals/BatchQuickMatchModel.vue index ce227c2811..bf59619997 100644 --- a/client/components/modals/BatchQuickMatchModel.vue +++ b/client/components/modals/BatchQuickMatchModel.vue @@ -54,8 +54,7 @@ export default { options: { provider: undefined, overrideDetails: true, - overrideCover: true, - overrideDefaults: true + overrideCover: true } } }, @@ -99,8 +98,8 @@ export default { init() { // If we don't have a set provider (first open of dialog) or we've switched library, set // the selected provider to the current library default provider - if (!this.options.provider || this.options.lastUsedLibrary != this.currentLibraryId) { - this.options.lastUsedLibrary = this.currentLibraryId + if (!this.options.provider || this.lastUsedLibrary != this.currentLibraryId) { + this.lastUsedLibrary = this.currentLibraryId this.options.provider = this.libraryProvider } }, diff --git a/client/components/ui/ToggleSwitch.vue b/client/components/ui/ToggleSwitch.vue index aabaa00f00..2e7c045c18 100644 --- a/client/components/ui/ToggleSwitch.vue +++ b/client/components/ui/ToggleSwitch.vue @@ -1,6 +1,6 @@