Browse Source

fix(Playlists): songs can't be sortable if they are non user-modifiable

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 years ago
parent
commit
d1bb174634
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/components/modals/EditPlaylist.vue

+ 1 - 1
frontend/src/components/modals/EditPlaylist.vue

@@ -238,7 +238,7 @@ export default {
 			return {
 				animation: 200,
 				group: "description",
-				disabled: false,
+				disabled: !this.playlist.isUserModifiable,
 				ghostClass: "draggable-list-ghost"
 			};
 		}