Skip to content

Commit

Permalink
fix: 用户更新时无法勾选默认分组的问题 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
eryajf authored Nov 12, 2023
1 parent 05ae40f commit c75476d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/personnel/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ export default {
return {
id: node.ID,
label: node.groupType + '=' + node.groupName,
isDisabled: node.groupType === 'ou' || node.groupName === 'root' || node.ID === 0,
isDisabled: node.groupType === 'ou' || node.groupName === 'root',
children: node.children
}
},
Expand Down

0 comments on commit c75476d

Please sign in to comment.