Skip to content

Commit

Permalink
Merge pull request #2148 from lhzzforever/dev/develop_ci
Browse files Browse the repository at this point in the history
Dev/develop ci
  • Loading branch information
huangpeng0428 authored Jul 31, 2023
2 parents 78bd5d2 + 3d7d84a commit b0ff691
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion frontend/src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,6 @@ const store = new Vuex.Store({
const results = data.results || [];
results.forEach((item) => {
if (item.type === 'system_manager') {
console.log(window.CUR_LANGUAGE, 444);
const langManager = ['zh-cn'].includes(window.CUR_LANGUAGE) ? '系统管理员' : ' system administrator';
item.name = `${item.name}${langManager}`;
}
Expand Down
1 change: 1 addition & 0 deletions frontend/src/views/group/components/iam-add-member.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
:key="infiniteTreeKey"
:is-disabled="isAll"
:empty-data="emptyData"
:has-selected-users="hasSelectedUsers"
:has-selected-departments="hasSelectedDepartments"
@async-load-nodes="handleRemoteLoadNode"
@expand-node="handleExpanded"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@
data-test-id="group_addGroupMemberDialog_tree_member"
:all-data="treeList"
:empty-data="emptyData"
:has-selected-users="hasSelectedUsers"
:has-selected-departments="hasSelectedDepartments"
style="height: 309px;"
:is-rating-manager="curIsRatingManager"
:key="infiniteTreeKey"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@
data-test-id="group_addGroupMemberDialog_tree_member"
:all-data="treeList"
:empty-data="emptyData"
:has-selected-users="hasSelectedUsers"
:has-selected-departments="hasSelectedDepartments"
:style="{ height: `${contentHeight - 52}px` }"
:is-rating-manager="curIsRatingManager"
:key="infiniteTreeKey"
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/views/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@
:style="contentStyle"
:is-sync="isSync"
:empty-data="emptyData"
:has-selected-users="hasSelectedUsers"
:has-selected-departments="hasSelectedDepartments"
location="page"
@async-load-nodes="handleRemoteLoadNode"
@expand-node="handleExpanded"
Expand Down

0 comments on commit b0ff691

Please sign in to comment.