【7.2.5】【role】修复选中状态标识

pull/37/head
fengshuonan 2022-09-29 13:48:07 +08:00
parent 4c5ef6a0fe
commit 3da91872f9
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ public class AntdMenusFactory {
} }
// 如果所有按钮都选中行,则设置菜单的选中标识 // 如果所有按钮都选中行,则设置菜单的选中标识
if (totalSelectSize == totalSize) { if (totalSelectSize == totalSize && totalSelectSize != 0) {
menuAndButtonTreeResponse.setChecked(true); menuAndButtonTreeResponse.setChecked(true);
} }
} }