bugfix: auto-bookmark setting was not saved

bugfix: auto-bookmark setting was not saved
This commit is contained in:
Alexander I. Chebykin 2022-04-19 01:22:27 +03:00
parent 3341c5df68
commit b07aaf38b9
2 changed files with 7 additions and 10 deletions

View File

@ -250,6 +250,10 @@
}
},
"$store.getters.autoBookmark" (val) {
localStorage.autoBookmark = val;
},
"$store.getters.darkTheme" (val) {
this.setTheme(val == true ? "dark" : "light");
localStorage.darkTheme = val;
@ -682,20 +686,13 @@
.to-top-button
margin-bottom: 80px
footer
background: transparent !important
.v-application.v-theme--
&light
header, footer > .v-card.player-interface
header, footer
background: rgba(255, 255, 255, .5)
footer > .v-card.player-interface.solid-bg
background: #fff
&dark
header, footer > .v-card.player-interface
header, footer
background: rgba(15, 15,15, .5)
footer > .v-card.player-interface.solid-bg
background: #000
.content-container
height: calc(100vh - 160px)

View File

@ -2,7 +2,7 @@ const messages = {
appName: "AudioLib",
about: "About",
authors: "Authors",
autoBookmarks: "Auto bookmarks",
autoBookmarks: "Auto-bookmarks",
book: "Books",
bookmarkSaved: "Bookmark saved",
books: "Book",