Explorar el Código

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan hace 4 años
padre
commit
d1bb174634
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"
 			};
 		}