From: <jbo...@li...> - 2005-08-15 14:16:52
|
Author: aron.gombas Date: 2005-08-15 10:15:25 -0400 (Mon, 15 Aug 2005) New Revision: 852 Modified: trunk/labs/kosmos/web-portlet/pages/jira_monitoring.jsp Log: Changed warning condition Modified: trunk/labs/kosmos/web-portlet/pages/jira_monitoring.jsp =================================================================== --- trunk/labs/kosmos/web-portlet/pages/jira_monitoring.jsp 2005-08-15 10:32:26 UTC (rev 851) +++ trunk/labs/kosmos/web-portlet/pages/jira_monitoring.jsp 2005-08-15 14:15:25 UTC (rev 852) @@ -7,7 +7,7 @@ <c:set var="id" scope="page" value="${projectsIt.id}"/> <display:column style="width:20px"> <c:choose> - <c:when test="${projectsIt.openIssues > 10}"> + <c:when test="${projectsIt.openIssues > (0.5*projectsIt.totalIssues)}"> <img src="<%= renderRequest.getContextPath() %>/pages/images/warning.gif" title="<fmt:message key="legend.warning"/>"/> </c:when> <c:otherwise> |