Explorar o código

fix(EditPlaylist): logged-out users shouldn't be able to drag songs around

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan %!s(int64=4) %!d(string=hai) anos
pai
achega
43c2575173
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      frontend/src/components/modals/EditPlaylist/index.vue

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

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