Skip to content

Commit

Permalink
MID-4543 Assign construction: kind+intent fields not readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Apr 5, 2018
1 parent 9d88adb commit 421bcaa
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -208,6 +208,9 @@ public String getObject() {
}

private boolean isAccessible(ItemDefinition def, ContainerStatus status) {
if (def.getName().equals(ConstructionType.F_KIND) || def.getName().equals(ConstructionType.F_INTENT)){
return false;
}
switch (status) {
case ADDING:
if (!def.canAdd()) {
Expand Down

0 comments on commit 421bcaa

Please sign in to comment.