Skip to content

Commit

Permalink
LPS-202104 Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 4, 2023
1 parent faacc2f commit 01c493e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public String getTypeLabel() {
return CETLabelUtil.getTypeLabel(themeDisplay.getLocale(), getType());
}

public boolean isNew() {
public boolean isAdding() {
return _adding;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ CustomElementCET customElementCET = editClientExtensionEntryDisplayContext.getCE
</div>

<c:choose>
<c:when test="<%= editClientExtensionEntryDisplayContext.isNew() %>">
<c:when test="<%= editClientExtensionEntryDisplayContext.isAdding() %>">
<aui:input label="instanceable" name="instanceable" type="checkbox" value="<%= customElementCET.isInstanceable() %>" />
</c:when>
<c:otherwise>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ IFrameCET iFrameCET = editClientExtensionEntryDisplayContext.getCET();
</aui:field-wrapper>

<c:choose>
<c:when test="<%= editClientExtensionEntryDisplayContext.isNew() %>">
<c:when test="<%= editClientExtensionEntryDisplayContext.isAdding() %>">
<aui:input label="instanceable" name="instanceable" type="checkbox" value="<%= iFrameCET.isInstanceable() %>" />
</c:when>
<c:otherwise>
Expand Down

0 comments on commit 01c493e

Please sign in to comment.