Ver Fonte

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan há 4 anos atrás
pai
commit
43c2575173
1 ficheiros alterados com 1 adições e 1 exclusões
  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"
 			};
 		}