소스 검색

fix(EditSong): Unable to create songs from scratch

Owen Diffey 2 년 전
부모
커밋
686ccc8c0a
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      frontend/src/components/modals/EditSong/index.vue

+ 5 - 3
frontend/src/components/modals/EditSong/index.vue

@@ -1199,9 +1199,11 @@ watch(
 	() => drawCanvas()
 );
 watch(youtubeId, (_youtubeId, _oldYoutubeId) => {
-	console.log("NEW YOUTUBE ID", _youtubeId);
-	unloadSong(_oldYoutubeId);
-	loadSong(_youtubeId);
+	if (!newSong.value) {
+		console.log("NEW YOUTUBE ID", _youtubeId);
+		unloadSong(_oldYoutubeId);
+		loadSong(_youtubeId);
+	}
 });
 
 onMounted(async () => {