diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-06 15:27:38 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-06 15:27:38 -0400 |
commit | ca4443d0d0c5e2a3ee31ffe4a957bcfc3cac8114 (patch) | |
tree | aead220ad78025d5de9ed5387e8b609241472c43 /ufund-ui/src/app/components/funding-basket/funding-basket.component.html | |
parent | 9f14b3787a8cfc49fd168b1242adcc6d5fa8bfd6 (diff) | |
download | JellySolutions-ca4443d0d0c5e2a3ee31ffe4a957bcfc3cac8114.tar.gz JellySolutions-ca4443d0d0c5e2a3ee31ffe4a957bcfc3cac8114.tar.bz2 JellySolutions-ca4443d0d0c5e2a3ee31ffe4a957bcfc3cac8114.zip |
Complete back-merge
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/funding-basket/funding-basket.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/funding-basket/funding-basket.component.html b/ufund-ui/src/app/components/funding-basket/funding-basket.component.html index 7158194..6363c68 100644 --- a/ufund-ui/src/app/components/funding-basket/funding-basket.component.html +++ b/ufund-ui/src/app/components/funding-basket/funding-basket.component.html @@ -3,7 +3,7 @@ <h1>Funding Basket</h1> <ng-template [ngIf]="(usersService.getBasket() | async)?.length"> <ng-template let-need #NLActions> - <input type="number" placeholder="Quantity" min="1" [id]="need?.id" class="contribution" (input)="resetColor($event)"> + <input type="number" placeholder="Quantity" min="1" [id]="need?.id" class="contribution sort-scheme" (input)="resetColor($event)"> <button class="removeNeed" (click)="this.usersService.removeNeed(need.id)"> <span class="icon">delete</span>Remove from Basket </button> |