From 43989eb1d501e11554eb2515a51b7651d09560cc Mon Sep 17 00:00:00 2001 From: PikachuEXE Date: Wed, 4 Dec 2024 23:01:52 +0800 Subject: [PATCH] ! Fix export playlist button visible in edit mode (#6273) --- src/renderer/components/playlist-info/playlist-info.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/components/playlist-info/playlist-info.js b/src/renderer/components/playlist-info/playlist-info.js index 232a3285bc10e..23854abf54513 100644 --- a/src/renderer/components/playlist-info/playlist-info.js +++ b/src/renderer/components/playlist-info/playlist-info.js @@ -267,6 +267,8 @@ export default defineComponent({ }, exportPlaylistButtonVisible: function() { + // Most UI should be invisible in edit mode + if (this.editMode) { return false } // Only online playlists can be shared if (!this.isUserPlaylist) { return false }