Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 7836dc2

Browse files
authored
web: Fix grammar on external service page (#42863)
It should be "Running for" since we display a timer counting up.
1 parent aca68a2 commit 7836dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/web/src/components/externalServices/ExternalServicePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ const ExternalServiceSyncJobNode: React.FunctionComponent<ExternalServiceSyncJob
318318
<div className="flex-shrink-0 flex-grow-1 mr-2">
319319
{node.startedAt && (
320320
<>
321-
{node.finishedAt === null && <>Running since </>}
321+
{node.finishedAt === null && <>Running for </>}
322322
{node.finishedAt !== null && <>Ran for </>}
323323
<Duration
324324
start={node.startedAt}

0 commit comments

Comments
 (0)