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
</div>
<div className={"tabular-nums"}>
{props.delay && (
{props.delay ? (
<span className={"text-red-400"}>
(+2)&nbsp;&nbsp;
(+{props.delay})&nbsp;&nbsp;
</span>
)}
) : null}
{renderTime(props.arrival)}
</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