mirror of https://gitee.com/stylefeng/roses
【menu】修复一个auth为空应为null的bug
parent
05a3154861
commit
51fd74b889
|
@ -47,7 +47,7 @@ public class AntdMenusFactory {
|
||||||
// 填充哪个角色绑定了这个菜单
|
// 填充哪个角色绑定了这个菜单
|
||||||
List<SimpleRoleInfo> roles = antdSysMenuResponse.getRoles();
|
List<SimpleRoleInfo> roles = antdSysMenuResponse.getRoles();
|
||||||
AuthorityItem authorityItem = new AuthorityItem();
|
AuthorityItem authorityItem = new AuthorityItem();
|
||||||
if (roles != null) {
|
if (roles != null && roles.size() > 0) {
|
||||||
ArrayList<String> auths = new ArrayList<>();
|
ArrayList<String> auths = new ArrayList<>();
|
||||||
for (SimpleRoleInfo role : roles) {
|
for (SimpleRoleInfo role : roles) {
|
||||||
auths.add(role.getRoleCode());
|
auths.add(role.getRoleCode());
|
||||||
|
|
Loading…
Reference in New Issue