Skip to content
Snippets Groups Projects
Commit 44731f5e authored by Niklas Schrötler's avatar Niklas Schrötler
Browse files

ProgressIndicator: Implemented delay

parent bb5e1823
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,11 @@ export default function ProgressIndicator(props: {first?: boolean, id: string, n ...@@ -41,11 +41,11 @@ export default function ProgressIndicator(props: {first?: boolean, id: string, n
</div> </div>
<div className={"tabular-nums"}> <div className={"tabular-nums"}>
{props.delay && ( {props.delay ? (
<span className={"text-red-400"}> <span className={"text-red-400"}>
(+2)&nbsp;&nbsp; (+{props.delay})&nbsp;&nbsp;
</span> </span>
)} ) : null}
{renderTime(props.arrival)} {renderTime(props.arrival)}
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment