Преглед на файлове

fix(CreatePlaylist): closing opened EditPlaylist modal would not remove CreatePlaylist from currentlyActive modals, causing issues

Kristian Vos преди 3 години
родител
ревизия
42025fae95
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      frontend/src/components/modals/CreatePlaylist.vue

+ 2 - 2
frontend/src/components/modals/CreatePlaylist.vue

@@ -82,12 +82,12 @@ export default {
 					new Toast(res.message);
 
 					if (res.status === "success") {
+						this.closeModal("createPlaylist");
+
 						if (!window.addToPlaylistDropdown) {
 							this.editPlaylist(res.data.playlistId);
 							this.openModal("editPlaylist");
 						}
-
-						this.closeModal("createPlaylist");
 					}
 				}
 			);