diff options
author | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-13 09:29:14 -0800 |
---|---|---|
committer | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-13 09:29:14 -0800 |
commit | 6e3792384a9c665189032b4e0ac50e41deafc4a8 (patch) | |
tree | 5566edf979765c823ae6408d1eb991a306104164 /app/components/plan-node/plan-node.html | |
parent | d5d4b46495cb9330785debad04651d73114ac4cb (diff) |
move duration formatting into separate pipes
Diffstat (limited to 'app/components/plan-node/plan-node.html')
-rw-r--r-- | app/components/plan-node/plan-node.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/plan-node/plan-node.html b/app/components/plan-node/plan-node.html index 1b53c9c..da8cc00 100644 --- a/app/components/plan-node/plan-node.html +++ b/app/components/plan-node/plan-node.html @@ -3,8 +3,8 @@ <h4>{{node[_planService.NODE_TYPE_PROP] | uppercase}} </h4> <span *ngIf="!viewOptions.showCompactView"> - <span class="node-duration">{{duration}} - <span class="text-muted">{{durationUnit}} | </span><strong>{{executionTimePercent}}</strong> + <span class="node-duration">{{node[_planService.ACTUAL_DURATION_PROP] | duration}} + <span class="text-muted">{{node[_planService.ACTUAL_DURATION_PROP] | durationUnit}} | </span><strong>{{executionTimePercent}}</strong> <span class="text-muted">%</span> </span> </span> |