In the html app, there is a condition for showing the duration of a step:
<span ng-if="step.durationInNanos > 10000000"
class="duration"> ({{ ::nanosToReadableUnit(step.durationInNanos) }})</span>
Would be nice if we could get rid of this condition to show the duration of all steps (even if they are very fast).
For example by setting an option in the jenkins plugin.