Skip to content

Commit

Permalink
Merge pull request #10042 from vhwweng/issue_10041
Browse files Browse the repository at this point in the history
bug: 项目管理-项目最大可授权人员范围选择全员显示为空 #10041
  • Loading branch information
bkci-bot authored Mar 1, 2024
2 parents 82ae4a3 + c00b7d2 commit c4500f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/frontend/devops-manage/src/components/project-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ onBeforeUnmount(() => {
v-for="(subjectScope, index) in projectData.subjectScopes"
:key="index"
>
{{ subjectScope.name }}
{{ subjectScope.id === '*' ? t('全员') : subjectScope.name }}
</bk-tag>
<EditLine
class="edit-line ml5"
Expand Down
3 changes: 2 additions & 1 deletion src/frontend/locale/manage/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,6 @@
"选择项目类型": "Select project type",
"重命名": "Rename",
"项目类型": "Project Type",
"创建项目申请单已撤回": "Creation of project application has been withdrawn"
"创建项目申请单已撤回": "Creation of project application has been withdrawn",
"全员": "EveryOne"
}
3 changes: 2 additions & 1 deletion src/frontend/locale/manage/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,6 @@
"选择项目类型": "选择项目类型",
"重命名": "重命名",
"项目类型": "项目类型",
"创建项目申请单已撤回": "创建项目申请单已撤回"
"创建项目申请单已撤回": "创建项目申请单已撤回",
"全员": "全员"
}

0 comments on commit c4500f8

Please sign in to comment.