diff --git a/public/index.html b/public/index.html index a2f3da7..730ae91 100644 --- a/public/index.html +++ b/public/index.html @@ -321,18 +321,18 @@

Top Playlists

Charts

-
-
-
+
+
+
-
-
-
- - - + + +
+ + +
{{ track.position }} @@ -353,7 +353,7 @@

Charts

-
+
@@ -586,39 +586,39 @@

Folders

Save playlists as compilation

-
+

Use null separator

-
+

Save ID3v1 as well

-
+

How would you like to separate your artists?

- + + + + + + + + +

Remove album version from track title

-
+

Date format for FLAC files

- + + + +
@@ -650,8 +650,8 @@

Folders

-
-

Command to execute after download

+
+

Command to execute after download

Leave blank for no action

@@ -667,7 +667,7 @@

Folders

diff --git a/public/js/modules/components/settings-tab.js b/public/js/modules/components/settings-tab.js index ee4ad9b..e65b08f 100644 --- a/public/js/modules/components/settings-tab.js +++ b/public/js/modules/components/settings-tab.js @@ -8,7 +8,7 @@ const SettingsTab = new Vue({ lastSettings: {}, lastCredentials: {}, spotifyFeatures: {}, - defaultSettings: {} + defaultSettings: {} } }, methods: { @@ -29,7 +29,7 @@ const SettingsTab = new Vue({ socket.emit('saveSettings', this.lastSettings, this.lastCredentials) }, loadSettings(settings, spotifyCredentials, defaults=null) { - if (defaults) this.defaultSettings = { ...defaults } + if (defaults) this.defaultSettings = { ...defaults } this.lastSettings = { ...settings } this.lastCredentials = { ...spotifyCredentials } this.settings = settings @@ -52,9 +52,9 @@ const SettingsTab = new Vue({ this.loadSettings(settings, credentials) toast('Settings updated!', 'settings') }, - resetSettings(){ - this.settings = { ...this.defaultSettings } - } + resetSettings(){ + this.settings = { ...this.defaultSettings } + } }, mounted() { socket.on('init_settings', this.initSettings)