Skip to content

Commit c75476d

Browse files
authored
fix: 用户更新时无法勾选默认分组的问题 (#52)
1 parent 05ae40f commit c75476d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/personnel/user/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ export default {
710710
return {
711711
id: node.ID,
712712
label: node.groupType + '=' + node.groupName,
713-
isDisabled: node.groupType === 'ou' || node.groupName === 'root' || node.ID === 0,
713+
isDisabled: node.groupType === 'ou' || node.groupName === 'root',
714714
children: node.children
715715
}
716716
},

0 commit comments

Comments
 (0)