Skip to content

Commit

Permalink
Fix history filter view if no recentfilter
Browse files Browse the repository at this point in the history
for #239
  • Loading branch information
gschueler committed Dec 5, 2012
1 parent 2bc3c9a commit c17b14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rundeckapp/grails-app/views/reports/_advDateFilters.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gcal.setTime(new Date())
def CUR_YEAR=gcal.get(java.util.GregorianCalendar.YEAR)
%>
<tr>
<td colspan="2" id="extDateFilters" style="${params.recentFilter && params.recentFilter!='-' ? 'display:none;':''} background: #ccc; border:1px solid #aaa; text-align:left;">
<td colspan="2" id="extDateFilters" style="${!params.recentFilter || params.recentFilter!='-' ? 'display:none;':''} background: #ccc; border:1px solid #aaa; text-align:left;">
<g:if test="${!hidestart}">
<div>
<span class="prompt">
Expand Down

0 comments on commit c17b14a

Please sign in to comment.