Fixed settings tab for singleAlbumArtist

This commit is contained in:
RemixDev 2020-07-20 13:09:00 +02:00
parent e3847cbfb7
commit f4b55e958f
3 changed files with 3 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
import Vue from 'vue' import Vue from 'vue'
// Object is needed for vue proxy (what does this mean?) // Object is needed for vue change detection
window.vol = { window.vol = {
preview_max_volume: 100 preview_max_volume: 100
} }

View File

@ -428,7 +428,7 @@
</div> </div>
<label class="with_checkbox"> <label class="with_checkbox">
<input type="checkbox" v-model="settings.singleAlbumArtist" /> <input type="checkbox" v-model="settings.tags.singleAlbumArtist" />
<span class="checkbox_text">{{ $t('settings.other.singleAlbumArtist') }}</span> <span class="checkbox_text">{{ $t('settings.other.singleAlbumArtist') }}</span>
</label> </label>
@ -755,5 +755,3 @@ export default {
} }
} }
</script> </script>