소스 검색

fix(Playlists): songs can't be sortable if they are non user-modifiable

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 년 전
부모
커밋
d1bb174634
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frontend/src/components/modals/EditPlaylist.vue

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

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