Skip to content

Commit ab91630

Browse files
committed
feat: Update donations
1 parent d2008b5 commit ab91630

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

src/app/index/donate/data.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
[
2+
{
3+
"sum": -192.40,
4+
"currency": "EUR",
5+
"date": "2023-01-18T00:00:00+00:00",
6+
"contributor": null,
7+
"purpose": "January/February hosting"
8+
},
9+
{
10+
"sum": 88,
11+
"currency": "EUR",
12+
"date": "2023-01-18T00:00:00+00:00",
13+
"contributor": "Cadillac"
14+
},
15+
{
16+
"sum": -1299,
17+
"currency": "RUB",
18+
"date": "2023-01-17T00:00:00+00:00",
19+
"contributor": null,
20+
"purpose": "Domain name"
21+
},
22+
{
23+
"sum": 1299,
24+
"currency": "RUB",
25+
"date": "2023-01-17T00:00:00+00:00",
26+
"contributor": "Dmitry"
27+
},
228
{
329
"sum": 46.95,
430
"currency": "EUR",

src/app/index/donate/donate.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface Donation {
2525
})
2626
export class IndexDonateComponent {
2727
public goal = 2500;
28-
private monthlyCharge = 180.56;
28+
private monthlyCharge = 192.4;
2929

3030
public $state = of(require('./data.json') as Donation[]).pipe(
3131
map((operations) => {

0 commit comments

Comments
 (0)