浏览代码

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 () => {