فهرست منبع

fix: View Queue closing immediately

Owen Diffey 3 سال پیش
والد
کامیت
a4f15e35a3
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      frontend/src/components/modals/ManageStation/index.vue

+ 2 - 1
frontend/src/components/modals/ManageStation/index.vue

@@ -234,7 +234,8 @@ export default {
 		"station.requests": function (requests) {
 			if (this.tab === "request" && !this.canRequest()) {
 				if (this.isOwnerOrAdmin()) this.showTab("settings");
-				else this.closeModal("manageStation");
+				else if (!(this.sector === "home" && !this.isOwnerOrAdmin()))
+					this.closeModal("manageStation");
 			}
 		},
 		// eslint-disable-next-line