minor: trying to get more details on #397

This commit is contained in:
lesion 2024-05-20 12:33:00 +02:00
parent a3d726a68a
commit cf03f66501
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -37,7 +37,11 @@ export default {
...mapGetters(['is_dark'])
},
created () {
this.$vuetify.theme.dark = this.is_dark
try {
this.$vuetify.theme.dark = this.is_dark
} catch (e) {
console.error(e)
}
}
}
</script>