瀏覽代碼

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

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 年之前
父節點
當前提交
43c2575173
共有 1 個文件被更改,包括 1 次插入1 次删除
  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"
 			};
 		}