Skip to content

Commit 47ebd8c

Browse files
committed
fix(Permission): The column permission search box searches for fields, not rule groups.
1 parent 0315e27 commit 47ebd8c

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

frontend/src/i18n/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@
575575
"operate_with_caution": "After deletion, the users under the workspace will be removed and all resources will be deleted. Please operate with caution."
576576
},
577577
"permission": {
578+
"search_field": "Search field",
578579
"search_rule_group": "Search rule group",
579580
"add_rule_group": "Add rule group",
580581
"permission_rule": "Permission rules",

frontend/src/i18n/ko-KR.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@
575575
"operate_with_caution": "삭제 후 해당 작업 공간의 사용자가 제거되고 모든 리소스도 삭제됩니다. 신중하게 작업하십시오."
576576
},
577577
"permission": {
578+
"search_field": "검색 필드",
578579
"search_rule_group": "규칙 그룹 검색",
579580
"add_rule_group": "규칙 그룹 추가",
580581
"permission_rule": "권한 규칙",

frontend/src/i18n/zh-CN.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@
575575
"operate_with_caution": "删除后,该工作空间下的用户将被移除,所有资源也将被删除,请谨慎操作。"
576576
},
577577
"permission": {
578+
"search_field": "搜索字段",
578579
"search_rule_group": "搜索规则组",
579580
"add_rule_group": "添加规则组",
580581
"permission_rule": "权限规则",

frontend/src/views/system/permission/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ const columnRules = {
867867
<el-input
868868
v-if="ruleType !== 1"
869869
v-model="searchColumn"
870-
:placeholder="$t('permission.search_rule_group')"
870+
:placeholder="$t('permission.search_field')"
871871
autocomplete="off"
872872
clearable
873873
><template #prefix>

0 commit comments

Comments
 (0)