From 201dbc4b9c77b80ac8f3f734df546cedee9bf0af Mon Sep 17 00:00:00 2001
From: WhiteyCookie <102429233+WhiteyCookie@users.noreply.github.com>
Date: Mon, 4 Nov 2024 11:53:14 +0100
Subject: [PATCH 1/2] Rejected Shares Percentage Information added
resolved conflicts for new UI
---
.../axe-os/src/app/components/home/home.component.html | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/main/http_server/axe-os/src/app/components/home/home.component.html b/main/http_server/axe-os/src/app/components/home/home.component.html
index 30a7d4d..7536692 100644
--- a/main/http_server/axe-os/src/app/components/home/home.component.html
+++ b/main/http_server/axe-os/src/app/components/home/home.component.html
@@ -58,6 +58,11 @@
{{info.sharesRejected | number: '1.0-0'}}
rejected
+
+
+ {{(info.sharesRejected / (info.sharesAccepted + info.sharesRejected) * 100) | number: '1.3-3'}}%
+ of total shares rejected
+
@@ -222,4 +227,4 @@
-
\ No newline at end of file
+
From ac8abc22aa75ade14a94fdbed7e9257ea531c234 Mon Sep 17 00:00:00 2001
From: WhiteyCookie <102429233+WhiteyCookie@users.noreply.github.com>
Date: Sat, 23 Nov 2024 13:35:53 +0100
Subject: [PATCH 2/2] Update home.component.html
Less precision (2 decimals) and cleaned format "x rejected (0.00%)"
---
.../axe-os/src/app/components/home/home.component.html | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/main/http_server/axe-os/src/app/components/home/home.component.html b/main/http_server/axe-os/src/app/components/home/home.component.html
index 7536692..61d9b0a 100644
--- a/main/http_server/axe-os/src/app/components/home/home.component.html
+++ b/main/http_server/axe-os/src/app/components/home/home.component.html
@@ -57,12 +57,7 @@
{{info.sharesRejected | number: '1.0-0'}}
- rejected
-
-
- {{(info.sharesRejected / (info.sharesAccepted + info.sharesRejected) * 100) | number: '1.3-3'}}%
- of total shares rejected
-
+ rejected ({{(info.sharesRejected / (info.sharesAccepted + info.sharesRejected) * 100) | number: '1.2-2'}}%)