mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-12-03 20:49:56 +08:00
refactor(系统设置): 优化保存配额报错空指针
This commit is contained in:
parent
ce44ad18bd
commit
cc24cbc7fb
@ -79,7 +79,7 @@ public class QuotaManagementService {
|
||||
quota.setResourcePool(String.join(",", intersection));
|
||||
|
||||
}
|
||||
if (ObjectUtils.isNotEmpty(workspaceQuota) && ObjectUtils.isNotEmpty(quota) && StringUtils.isBlank(workspaceQuota.getModuleSetting())) {
|
||||
if (ObjectUtils.isNotEmpty(workspaceQuota) && ObjectUtils.isNotEmpty(quota) && StringUtils.isNotBlank(workspaceQuota.getModuleSetting())) {
|
||||
List<String> workModules = Arrays.asList(workspaceQuota.getModuleSetting().split(","));
|
||||
List<String> projectModules = StringUtils.isNotBlank(quota.getModuleSetting()) ? Arrays.asList(quota.getModuleSetting().split(",")) : new ArrayList<>();
|
||||
List<String> moduleIntersection = workModules.stream()
|
||||
|
Loading…
Reference in New Issue
Block a user