Monorepo for Tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ogre: use singular `round` when rounds <= 1, plural `rounds` otherwise

Signed-off-by: eti <eti@eti.tf>

authored by

eti and committed by
Tangled
ff4bd6c7 d48d95e8

+1 -1
+1 -1
ogre/src/components/cards/pull-request.tsx
··· 116 116 additions={data.additions} 117 117 deletions={data.deletions} 118 118 /> 119 - <RoundsPill value={data.rounds} label="rounds" /> 119 + <RoundsPill value={data.rounds} label={data.rounds <= 1 ? `round` : `rounds`} /> 120 120 </Row> 121 121 </Col> 122 122