From 17dd03682b923b91199606a967fe2777de933e0f Mon Sep 17 00:00:00 2001 From: softsimon Date: Wed, 7 Oct 2020 20:19:22 +0700 Subject: [PATCH] Set 0.01 BTC as minimum donation limit refs #122 --- frontend/src/app/components/about/about.component.html | 2 +- frontend/src/app/components/about/about.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index df1a09dc3..5ebd35307 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -25,7 +25,7 @@
- +
diff --git a/frontend/src/app/components/about/about.component.ts b/frontend/src/app/components/about/about.component.ts index 86765a336..3e9251811 100644 --- a/frontend/src/app/components/about/about.component.ts +++ b/frontend/src/app/components/about/about.component.ts @@ -40,7 +40,7 @@ export class AboutComponent implements OnInit { } this.donationForm = this.formBuilder.group({ - amount: [0.001], + amount: [0.01], handle: [''], });