From 0d145b5883672f8a87c1f5a6fd1c7a3a88fdcf8a Mon Sep 17 00:00:00 2001 From: kevinpauer Date: Thu, 12 May 2022 13:59:21 +0200 Subject: [PATCH 1/5] Fix #179 --- frontend/src/app/Views/dashboard/dashboard.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/Views/dashboard/dashboard.component.html b/frontend/src/app/Views/dashboard/dashboard.component.html index 4c3fb73..20376c1 100644 --- a/frontend/src/app/Views/dashboard/dashboard.component.html +++ b/frontend/src/app/Views/dashboard/dashboard.component.html @@ -140,7 +140,7 @@ Price - {{ element.price }}$ + {{ element.price }}€ From 6dfb96a6db9d5bf88aa8029bfa95f05fa10f9d9c Mon Sep 17 00:00:00 2001 From: kevinpauer Date: Thu, 12 May 2022 14:52:22 +0200 Subject: [PATCH 2/5] Fix #183 --- frontend/src/app/Services/bot.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/Services/bot.service.ts b/frontend/src/app/Services/bot.service.ts index 954cdc6..afe1618 100644 --- a/frontend/src/app/Services/bot.service.ts +++ b/frontend/src/app/Services/bot.service.ts @@ -102,17 +102,17 @@ export class BotService { /** * Function to delete a share - * @param {string} symbol + * @param {string} isin * @returns Observable */ - public deleteShare(symbol: string): Observable { + public deleteShare(isin: string): Observable { return this.http.delete(API_URL + 'share', { headers: new HttpHeaders({ 'Content-Type': 'application/json', Authorization: 'Bearer ' + this.tokenStorage.getToken(), }), body: { - symbol, + isin, }, }); } From b9c09c56419025bb4193f4a464b2cf42161cbe65 Mon Sep 17 00:00:00 2001 From: kevinpauer Date: Thu, 12 May 2022 15:22:35 +0200 Subject: [PATCH 3/5] Fix #184 --- .../app/Views/profile/profile.component.html | 17 ++++++++--- .../app/Views/profile/profile.component.ts | 29 ++++++++++++++----- 2 files changed, 34 insertions(+), 12 deletions(-) diff --git a/frontend/src/app/Views/profile/profile.component.html b/frontend/src/app/Views/profile/profile.component.html index 5652f13..21c1ac9 100644 --- a/frontend/src/app/Views/profile/profile.component.html +++ b/frontend/src/app/Views/profile/profile.component.html @@ -64,13 +64,16 @@ Please enter a valid password @@ -79,12 +82,18 @@ Password is required +
+ Password does not match, make sure it is the same! +
+