Jelajahi Sumber

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 tahun lalu
induk
melakukan
43c2575173
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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"
 			};
 		}