Skip to content

Commit

Permalink
fix(core): ensure feature generator components honor createBase option
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Aug 11, 2021
1 parent c635f98 commit 1c2bcc8
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
@@ -1 +1 @@
<div><% if (onlyProject) { %><%= utils.classify(name) %><% } else { %>{{text}}<% } %></div>
<div><% if (onlyProject || !createBase) { %><%= utils.classify(name) %><% } else { %>{{text}}<% } %></div>
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
</StackLayout>
<% } else { %>
<StackLayout class="p-20">
<Label <% if (onlyProject) { %>text="<%= utils.classify(name) %>"<% } else { %>[text]="text"<% } %> class="text-center"></Label>
<Label <% if (onlyProject || !createBase) { %>text="<%= utils.classify(name) %>"<% } else { %>[text]="text"<% } %> class="text-center"></Label>
</StackLayout>
<% } %>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<div><% if (onlyProject) { %><%= utils.classify(name) %><% } else { %>{{text}}<% } %></div>
<div><% if (onlyProject || !createBase) { %><%= utils.classify(name) %><% } else { %>{{text}}<% } %></div>

0 comments on commit 1c2bcc8

Please sign in to comment.