From 99e44c5106bc83256f449799c6e12e34819fb8e4 Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Fri, 21 Jan 2022 17:44:54 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E7=8E=AF=E5=A2=83=E7=AE=A1=E7=90=86=E5=88=97=E8=A1=A8=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=AD=9B=E6=9F=A5=E9=80=89=E9=A1=B9=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1009836 --user=lyh 【系统设置】github#9739,系统设置-环境管理列表项目筛查选项重复数据 https://www.tapd.cn/55049933/s/1095756 Closes #9739 --- .../settings/workspace/environment/EnvironmentList.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/business/components/settings/workspace/environment/EnvironmentList.vue b/frontend/src/business/components/settings/workspace/environment/EnvironmentList.vue index 2478e9700e..2ccd967d39 100644 --- a/frontend/src/business/components/settings/workspace/environment/EnvironmentList.vue +++ b/frontend/src/business/components/settings/workspace/environment/EnvironmentList.vue @@ -262,6 +262,7 @@ export default { if (!this.projectList || this.projectList.length === 0) { //没有项目数据的话请求项目数据 this.$get("/project/listAll", (response) => { this.projectList = response.data; //获取当前工作空间所拥有的项目, + this.projectFilters = []; this.projectList.forEach(project => { this.idNameMap.set(project.id, project.name); this.projectIds.push(project.id);