aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/funding-basket
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-04-04 10:48:31 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-04-04 10:48:31 -0400
commita5567b2ed092af3a50da75eef28d46c06760a266 (patch)
treeb6459801cf26d91147835e3039abd9c8e7ac0453 /ufund-ui/src/app/components/funding-basket
parent43b036dc8ac03100787ec691a4f4ebe3670f861f (diff)
downloadJellySolutions-a5567b2ed092af3a50da75eef28d46c06760a266.tar.gz
JellySolutions-a5567b2ed092af3a50da75eef28d46c06760a266.tar.bz2
JellySolutions-a5567b2ed092af3a50da75eef28d46c06760a266.zip
Improve add to basket feedback
Diffstat (limited to 'ufund-ui/src/app/components/funding-basket')
-rw-r--r--ufund-ui/src/app/components/funding-basket/funding-basket.component.html2
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 3e884cd..edc9609 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 @@
<ng-template [ngIf]="(usersService.getBasket() | async)?.length">
<ng-template let-need #NLActions>
<input type="number" placeholder="Quantity" min="1" [id]="need?.id" class="contribution">
- <button class="removeNeed" title="delete need" (click)="this.usersService.removeNeed(need.id)">
+ <button class="removeNeed" (click)="this.usersService.removeNeed(need.id)">
<span class="icon">delete</span>Remove from Basket
</button>
</ng-template>