Browse Source

refactor(EditSong): Only fill input with YouTube author prefill

Owen Diffey 2 years ago
parent
commit
dee97c4fd9
1 changed files with 1 additions and 5 deletions
  1. 1 5
      frontend/src/components/modals/EditSong/index.vue

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

@@ -1667,11 +1667,7 @@ export default {
 				try {
 					const { author } = this.video.player.getVideoData();
 
-					if (author)
-						this.updateSongField({
-							field: "artists",
-							value: [author]
-						});
+					if (author) this.artistInputValue = author;
 					else throw new Error("No video author found");
 				} catch (e) {
 					new Toast("Unable to fetch YouTube video author");