Skip to content

Commit

Permalink
Fix selecting previous value in run dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Grigory Chernyshev committed Apr 11, 2016
1 parent 7312f3d commit 4307c8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ public ModelAndView renderControl(@NotNull HttpServletRequest request, @NotNull

Map<String, String> config = context.getDescription().getParameterTypeArguments();




//((ParameterContextFactory.ParameterRenderContextBase) context).myParameters;

String url = config.get(URL_PARAMETER);
String format = config.get(FORMAT_PARAMETER);
Boolean enableEditOnError;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<c:forEach var="option" items="${options.options}">
<option
value="${option.value}"
<c:if test="${option.key eq selectedKey}">selected</c:if>
<c:if test="${option.value eq selectedKey}">selected</c:if>
<c:if test="${not option.enabled}">disabled</c:if>
<c:if test="${not empty option.image}">data-image="${option.image}"</c:if>
>
Expand Down

0 comments on commit 4307c8a

Please sign in to comment.