Skip to content

Commit

Permalink
fix for the create button bug (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
itailiors authored Dec 18, 2024
1 parent 51b219d commit 4f969e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Angor/Client/Pages/Founder.razor
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
<button
class="btn btn-border"
@onclick="NavigateToCreateProject"
disabled="@scanningForProjects || @(founderProjects.Count >= 14)">
<i>
disabled="@(scanningForProjects || (founderProjects.Count >= 14) ? true : null)"> <i>
<Icon IconName="add"></Icon>
</i>
<span class="nav-link-text ms-1">
Expand Down

0 comments on commit 4f969e9

Please sign in to comment.