changeset 154:6159ca4b057d

Display jvm-info stoptime row only for dead JVMs Fix bug where stoptime is only shown for alive JVMs Reviewed-by: neugens Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-August/024541.html
author Andrew Azores <aazores@redhat.com>
date Tue, 15 Aug 2017 09:45:04 -0400
parents 45d2f7a89df4
children abae7ebe2fee
files src/app/components/jvm-info/jvm-info.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/app/components/jvm-info/jvm-info.html	Mon Aug 14 10:45:41 2017 -0400
+++ b/src/app/components/jvm-info/jvm-info.html	Tue Aug 15 09:45:04 2017 -0400
@@ -48,7 +48,7 @@
                     <td translate>jvmInfo.table.START_TIME</td>
                     <td>{{ctrl.jvmInfo.startTime | date:"medium"}}</td>
                   </tr>
-                  <tr ng-show="ctrl.jvmInfo.isAlive">
+                  <tr ng-show="!ctrl.jvmInfo.isAlive">
                     <td translate>jvmInfo.table.STOP_TIME</td>
                     <td>{{ctrl.jvmInfo.stopTime | date:"medium"}}</td>
                   </tr>