diff --git a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html index 7bccfee87..edf111ffc 100644 --- a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html +++ b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html @@ -21,18 +21,10 @@
- + Account Type
- + Platform
diff --git a/apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html b/apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html index 59a8e4e16..93f63e6f4 100644 --- a/apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html +++ b/apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -35,112 +35,125 @@
+ >Change
+ >Performance
+ >Average Unit Price
+ >Market Price
+ >Minimum Price
+ >Maximum Price
+ >Quantity
+ >Investment
+ >First Buy Date
+ >{transactionCount === 1, plural, =1 {Transaction} other + {Transactions}}
+ >Asset Class
+ >Asset Sub Class
+ >Sector
+ >Country
diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.html b/apps/client/src/app/pages/portfolio/allocations/allocations-page.html index 16a2805d4..51aa49ae2 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.html +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.html @@ -233,27 +233,30 @@
+ >Developed Markets
+ >Emerging Markets
+ >Other Markets
diff --git a/apps/client/src/app/pages/public/public-page.html b/apps/client/src/app/pages/public/public-page.html index d7f4e396c..ee2e368cd 100644 --- a/apps/client/src/app/pages/public/public-page.html +++ b/apps/client/src/app/pages/public/public-page.html @@ -82,27 +82,30 @@
+ >Developed Markets
+ >Emerging Markets
+ >Other Markets
diff --git a/libs/ui/src/lib/value/value.component.html b/libs/ui/src/lib/value/value.component.html index b55b16d44..4d22ce11e 100644 --- a/libs/ui/src/lib/value/value.component.html +++ b/libs/ui/src/lib/value/value.component.html @@ -43,13 +43,13 @@
- +
- {{ label }} + {{ subLabel }}
- {{ label }} +
diff --git a/libs/ui/src/lib/value/value.component.stories.ts b/libs/ui/src/lib/value/value.component.stories.ts index 6ea05cb17..739b4185b 100644 --- a/libs/ui/src/lib/value/value.component.stories.ts +++ b/libs/ui/src/lib/value/value.component.stories.ts @@ -31,7 +31,6 @@ Currency.args = { export const Label = Template.bind({}); Label.args = { - label: 'Label', locale: 'en-US', value: 7.25 }; diff --git a/libs/ui/src/lib/value/value.component.ts b/libs/ui/src/lib/value/value.component.ts index 8919b1455..f05e53551 100644 --- a/libs/ui/src/lib/value/value.component.ts +++ b/libs/ui/src/lib/value/value.component.ts @@ -20,7 +20,6 @@ export class ValueComponent implements OnChanges { @Input() isCurrency = false; @Input() isDate = false; @Input() isPercent = false; - @Input() label = ''; @Input() locale = getLocale(); @Input() position = ''; @Input() precision: number | undefined;