diff options
Diffstat (limited to 'src/components/SettingsPage.vue')
-rw-r--r-- | src/components/SettingsPage.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SettingsPage.vue b/src/components/SettingsPage.vue index 79a92fe..ebd4473 100644 --- a/src/components/SettingsPage.vue +++ b/src/components/SettingsPage.vue @@ -123,7 +123,7 @@ export default { // LocalStorage loadFromLS() { this.backgroundImageURL = - JSON.parse(localStorage.getItem("backgroundImageURL")) || + JSON.parse(localStorage.getItem("backgroundImageURL")) ?? this.backgroundImageURL; }, writeToLS() { |