Fix add-app-wizard for enums Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/b02bd177 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/b02bd177 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/b02bd177
Branch: refs/heads/master Commit: b02bd17710d20104e2f4559c17a91769b7f36126 Parents: d2a5d4b Author: Aled Sage <[email protected]> Authored: Wed Oct 7 21:04:35 2015 +0100 Committer: Aled Sage <[email protected]> Committed: Wed Oct 7 21:04:35 2015 +0100 ---------------------------------------------------------------------- .../webapp/assets/tpl/app-add-wizard/required-config-entry.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/b02bd177/usage/jsgui/src/main/webapp/assets/tpl/app-add-wizard/required-config-entry.html ---------------------------------------------------------------------- diff --git a/usage/jsgui/src/main/webapp/assets/tpl/app-add-wizard/required-config-entry.html b/usage/jsgui/src/main/webapp/assets/tpl/app-add-wizard/required-config-entry.html index 1478963..b802624 100644 --- a/usage/jsgui/src/main/webapp/assets/tpl/app-add-wizard/required-config-entry.html +++ b/usage/jsgui/src/main/webapp/assets/tpl/app-add-wizard/required-config-entry.html @@ -34,7 +34,7 @@ under the License. element = null; for (var i = 0; i < length; i++) { element = data.possibleValues[i]; %> - <option value="<%= element.value %>"><% if (data.defaultValue == element.value) { %> selected="selected"<% } %>><%= element.description %></option> + <option value="<%= element.value %>"<% if (data.defaultValue == element.value) { %> selected="selected"<% } %>><%= element.description %></option> <% } %> </select> <% } else { %>
