Skip to content

Commit

Permalink
feat(cxl-ui): cxl-dashboard-team-stats use integer for complete perce…
Browse files Browse the repository at this point in the history
…ntage
  • Loading branch information
freudFlintstone authored and pawelkmpt committed Nov 15, 2023
1 parent a3d0fe2 commit bf74455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cxl-ui/src/components/cxl-dashboard-team-stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class CxlDashboardTeamStatsElement extends LitElement {
<div class="progress">
<span class="progress-title">Team roadmap progress</span>
<vaadin-progress-bar value="${this.progress}"></vaadin-progress-bar>
<h2 class="progress-subtitle">${100 * this.progress}% complete</h2>
<h2 class="progress-subtitle">${(100 * this.progress).toFixed(0)}% complete</h2>
</div>
<div class="stats">
<slot name="stats"></slot>
Expand Down

0 comments on commit bf74455

Please sign in to comment.