浏览代码

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