8000 Fix progress bar width calculation in FounderProjectItem component by miladsoft · Pull Request #431 · block-core/angor · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix progress bar width calculation in FounderProjectItem component #431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
< 8000 /div>
Diff view
6 changes: 4 additions & 2 deletions src/Angor/Client/Components/FounderProjectItem.razor
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@
</div>
<div class="w-full mt-3">
<div class="progress rounded-pill mb-3" style="height: 16px; background-color: var(--btn-border);">
<div class="progress-bar-striped bg-success rounded-pill text-center" role="progressbar"
style="width: @projectStats.FundingProgressPercent%;"
<div class="progress rounded-pill mb-3" style="height: 16px; background-color: var(--btn-border);">
<div class="progress-bar-striped bg-success rounded-pill text-center" role="progressbar"
style="width: @(projectStats.FundingProgressPercent + "%");">
</div>
< 8E59 /td> </div>
Comment on lines 87 to 92
Copy link
Preview
Copilot AI Jun 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Review if the additional outer progress container is intentional as it duplicates the inner container's styling and structure, possibly adding unnecessary complexity.

Copilot uses AI. Check for mistakes.

</div>
</div>
Expand Down
0