Procházet zdrojové kódy

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan před 4 roky
rodič
revize
43c2575173

+ 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"
 			};
 		}