Skip to content

Commit

Permalink
Fix percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonnav committed Oct 15, 2024
1 parent 0a30c8d commit d11d113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion estela-web/src/pages/JobDetailPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ export class JobDetailPage extends Component<RouteComponentProps<RouteParams>, J
<div
className="bg-estela-states-green-medium h-2.5 rounded-full"
style={{
width: `${lifespanPercentage > 98 ? 100 : lifespanPercentage}%`,
width: "100%",
}}
></div>
</Content>
Expand Down

0 comments on commit d11d113

Please sign in to comment.