From b62488628c3597199fa69d6900c446545ba98d06 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:58:15 +0100 Subject: [PATCH] Prettify markup (#3029) --- .../account-detail-dialog.html | 14 +- .../admin-market-data/admin-market-data.html | 25 +- .../asset-profile-dialog.html | 121 +++++--- .../admin-overview/admin-overview.html | 16 +- .../components/admin-users/admin-users.html | 28 +- .../home-overview/home-overview.html | 170 +++++------ .../components/home-summary/home-summary.html | 4 +- .../position-detail-dialog.html | 122 ++++---- .../create-or-update-access-dialog.html | 50 ++-- .../user-account-membership.html | 14 +- .../user-account-settings.html | 26 +- .../src/app/pages/about/about-page.html | 2 +- .../about/oss-friends/oss-friends-page.html | 42 +-- .../about/overview/about-overview-page.html | 18 +- .../src/app/pages/accounts/accounts-page.html | 12 +- .../create-or-update-account-dialog.html | 48 +-- .../src/app/pages/admin/admin-page.html | 2 +- apps/client/src/app/pages/blog/blog-page.html | 92 +++--- apps/client/src/app/pages/faq/faq-page.html | 2 +- .../src/app/pages/features/features-page.html | 58 ++-- apps/client/src/app/pages/home/home-page.html | 2 +- .../src/app/pages/landing/landing-page.html | 3 +- .../portfolio/activities/activities-page.html | 35 ++- .../create-or-update-activity-dialog.html | 122 +++++--- .../import-activities-dialog.html | 279 +++++++++--------- .../allocations/allocations-page.html | 15 +- .../portfolio/analysis/analysis-page.html | 213 +++++++------ .../app/pages/portfolio/fire/fire-page.html | 7 +- .../portfolio/holdings/holdings-page.html | 18 +- .../app/pages/portfolio/portfolio-page.html | 2 +- .../src/app/pages/pricing/pricing-page.html | 26 +- .../show-access-token-dialog.html | 6 +- .../personal-finance-tools-page.html | 54 ++-- .../product-page-template.html | 42 +-- .../app/pages/resources/resources-page.html | 26 +- .../pages/user-account/user-account-page.html | 2 +- .../src/app/pages/webauthn/webauthn-page.html | 42 +-- apps/client/src/app/pages/zen/zen-page.html | 2 +- .../assistant-list-item.html | 9 +- libs/ui/src/lib/assistant/assistant.html | 46 +-- 40 files changed, 1027 insertions(+), 790 deletions(-) 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 23875bfde..041a779c4 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 @@ -25,7 +25,9 @@ class="h-100" [currency]="user?.settings?.baseCurrency" [historicalDataItems]="historicalDataItems" - [isInPercent]="data.hasImpersonationId || user.settings.isRestrictedView" + [isInPercent]=" + data.hasImpersonationId || user.settings.isRestrictedView + " [isLoading]="isLoadingChart" [locale]="user?.settings?.locale" /> @@ -92,7 +94,9 @@ [dataSource]="dataSource" [deviceType]="data.deviceType" [hasPermissionToCreateActivity]="false" - [hasPermissionToExportActivities]="!data.hasImpersonationId && !user.settings.isRestrictedView" + [hasPermissionToExportActivities]=" + !data.hasImpersonationId && !user.settings.isRestrictedView + " [hasPermissionToFilter]="false" [hasPermissionToOpenDetails]="false" [locale]="user?.settings?.locale" @@ -113,7 +117,11 @@ [accountBalances]="accountBalances" [accountId]="data.accountId" [locale]="user?.settings?.locale" - [showActions]="!data.hasImpersonationId && hasPermissionToDeleteAccountBalance && !user.settings.isRestrictedView" + [showActions]=" + !data.hasImpersonationId && + hasPermissionToDeleteAccountBalance && + !user.settings.isRestrictedView + " (accountBalanceDeleted)="onDeleteAccountBalance($event)" /> diff --git a/apps/client/src/app/components/admin-market-data/admin-market-data.html b/apps/client/src/app/components/admin-market-data/admin-market-data.html index b2fa9a275..a91b05bcc 100644 --- a/apps/client/src/app/components/admin-market-data/admin-market-data.html +++ b/apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -163,7 +163,12 @@ @@ -33,7 +35,12 @@ mat-menu-item type="button" [disabled]="assetProfileForm.dirty" - (click)="onGatherProfileDataBySymbol({dataSource: data.dataSource, symbol: data.symbol})" + (click)=" + onGatherProfileDataBySymbol({ + dataSource: data.dataSource, + symbol: data.symbol + }) + " > Gather Profile Data @@ -73,7 +80,12 @@ color="accent" mat-flat-button type="button" - [disabled]="!assetProfileForm.controls['historicalData']?.controls['csvString'].touched || assetProfileForm.controls['historicalData']?.controls['csvString']?.value === ''" + [disabled]=" + !assetProfileForm.controls['historicalData']?.controls['csvString'] + .touched || + assetProfileForm.controls['historicalData']?.controls['csvString'] + ?.value === '' + " (click)="onImportHistoricalData()" > Import @@ -129,49 +141,54 @@ > - @if (assetProfile?.countries?.length === 1 && - assetProfile?.sectors?.length === 1 ) { -
- Sector -
-
- Country -
+ @if ( + assetProfile?.countries?.length === 1 && + assetProfile?.sectors?.length === 1 + ) { +
+ Sector +
+
+ Country +
} @else { -
-
Sectors
- -
-
-
Countries
- -
+
+
Sectors
+ +
+
+
Countries
+ +
}
@@ -222,7 +239,17 @@ color="primary" i18n [checked]="isBenchmark" - (change)="isBenchmark ? onUnsetBenchmark({dataSource: data.dataSource, symbol: data.symbol}) : onSetBenchmark({dataSource: data.dataSource, symbol: data.symbol})" + (change)=" + isBenchmark + ? onUnsetBenchmark({ + dataSource: data.dataSource, + symbol: data.symbol + }) + : onSetBenchmark({ + dataSource: data.dataSource, + symbol: data.symbol + }) + " >Benchmark @@ -253,7 +280,9 @@ color="accent" mat-flat-button type="button" - [disabled]="assetProfileForm.controls['scraperConfiguration'].value === '{}'" + [disabled]=" + assetProfileForm.controls['scraperConfiguration'].value === '{}' + " (click)="onTestMarketData()" > Test diff --git a/apps/client/src/app/components/admin-overview/admin-overview.html b/apps/client/src/app/components/admin-overview/admin-overview.html index e7af876e4..d23210b54 100644 --- a/apps/client/src/app/components/admin-overview/admin-overview.html +++ b/apps/client/src/app/components/admin-overview/admin-overview.html @@ -28,7 +28,7 @@ [value]="transactionCount" />
- {{ transactionCount / userCount | number : '1.2-2' }} + {{ transactionCount / userCount | number: '1.2-2' }} per User
@@ -69,10 +69,10 @@ @@ -112,7 +112,9 @@ @@ -143,7 +145,7 @@
System Message
-
{{ systemMessage | json }}
+
{{ systemMessage | json }}
- @if(SymbolProfile?.countries?.length === 1 && - SymbolProfile?.sectors?.length === 1) { -
- Sector + Sector +
+
-
-
- Country -
+ Country +
} @else { -
-
Sectors
- -
-
-
Countries
- -
+
+
Sectors
+ +
+
+
Countries
+ +
}
@@ -257,7 +273,9 @@ [dataSource]="dataSource" [deviceType]="data.deviceType" [hasPermissionToCreateActivity]="false" - [hasPermissionToExportActivities]="!data.hasImpersonationId && !user.settings.isRestrictedView" + [hasPermissionToExportActivities]=" + !data.hasImpersonationId && !user.settings.isRestrictedView + " [hasPermissionToFilter]="false" [hasPermissionToOpenDetails]="false" [locale]="data.locale" @@ -294,15 +312,17 @@
Tags
- {{ tag.name }} + {{ + tag.name + }}
diff --git a/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html b/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html index 863ac5e16..e2ebefd1b 100644 --- a/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html +++ b/apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -28,30 +28,32 @@
@if (accessForm.controls['type'].value === 'PRIVATE') { -
- - Permission - - Restricted view - @if(data?.user?.settings?.isExperimentalFeatures) { - View - } - - -
-
- - - Ghostfolio User ID - - - -
+
+ + Permission + + Restricted view + @if (data?.user?.settings?.isExperimentalFeatures) { + View + } + + +
+
+ + + Ghostfolio User ID + + + +
}
diff --git a/apps/client/src/app/components/user-account-membership/user-account-membership.html b/apps/client/src/app/components/user-account-membership/user-account-membership.html index eb832c6ee..369a5949b 100644 --- a/apps/client/src/app/components/user-account-membership/user-account-membership.html +++ b/apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -3,7 +3,7 @@
@@ -137,7 +145,9 @@ [disabled]="!hasPermissionToUpdateUserSettings" [placeholder]="appearancePlaceholder" [value]="user?.settings?.colorScheme" - (selectionChange)="onChangeUserSetting('colorScheme', $event.value)" + (selectionChange)=" + onChangeUserSetting('colorScheme', $event.value) + " > Auto Light diff --git a/apps/client/src/app/pages/about/about-page.html b/apps/client/src/app/pages/about/about-page.html index 839e8114f..360cbd463 100644 --- a/apps/client/src/app/pages/about/about-page.html +++ b/apps/client/src/app/pages/about/about-page.html @@ -21,7 +21,7 @@ >
{{ tab.label }}
diff --git a/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html b/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html index f230679a7..f1431697f 100644 --- a/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html +++ b/apps/client/src/app/pages/about/oss-friends/oss-friends-page.html @@ -11,26 +11,28 @@
diff --git a/apps/client/src/app/pages/about/overview/about-overview-page.html b/apps/client/src/app/pages/about/overview/about-overview-page.html index 5b03acda5..1a6b6c466 100644 --- a/apps/client/src/app/pages/about/overview/about-overview-page.html +++ b/apps/client/src/app/pages/about/overview/about-overview-page.html @@ -147,15 +147,15 @@ >
@if (hasPermissionForSubscription) { -
- Blog -
+
+ Blog +
}
diff --git a/apps/client/src/app/pages/accounts/accounts-page.html b/apps/client/src/app/pages/accounts/accounts-page.html index d8bd01881..cffbe4251 100644 --- a/apps/client/src/app/pages/accounts/accounts-page.html +++ b/apps/client/src/app/pages/accounts/accounts-page.html @@ -8,7 +8,11 @@ [baseCurrency]="user?.settings?.baseCurrency" [deviceType]="deviceType" [locale]="user?.settings?.locale" - [showActions]="!hasImpersonationId && hasPermissionToUpdateAccount && !user.settings.isRestrictedView" + [showActions]=" + !hasImpersonationId && + hasPermissionToUpdateAccount && + !user.settings.isRestrictedView + " [totalBalanceInBaseCurrency]="totalBalanceInBaseCurrency" [totalValueInBaseCurrency]="totalValueInBaseCurrency" [transactionCount]="transactionCount" @@ -21,7 +25,11 @@
@if (data.account.id) { -

Update account

+

Update account

} @else { -

Add account

+

Add account

}
@@ -38,9 +38,9 @@ type="number" (keydown.enter)="$event.stopPropagation()" /> - {{ accountForm.controls['currency']?.value?.value }} + {{ + accountForm.controls['currency']?.value?.value + }}
@@ -55,18 +55,20 @@ (keydown.enter)="$event.stopPropagation()" /> - @for (platformEntry of filteredPlatforms | async; track platformEntry) - { - - - - {{ platformEntry.name }} - - + @for ( + platformEntry of filteredPlatforms | async; + track platformEntry + ) { + + + + {{ platformEntry.name }} + + } @@ -89,12 +91,12 @@ >
@if (data.account.id) { -
- - Account ID - - -
+
+ + Account ID + + +
}
diff --git a/apps/client/src/app/pages/admin/admin-page.html b/apps/client/src/app/pages/admin/admin-page.html index 839e8114f..360cbd463 100644 --- a/apps/client/src/app/pages/admin/admin-page.html +++ b/apps/client/src/app/pages/admin/admin-page.html @@ -21,7 +21,7 @@ >
{{ tab.label }}
diff --git a/apps/client/src/app/pages/blog/blog-page.html b/apps/client/src/app/pages/blog/blog-page.html index afde112d5..cd05d065c 100644 --- a/apps/client/src/app/pages/blog/blog-page.html +++ b/apps/client/src/app/pages/blog/blog-page.html @@ -9,30 +9,30 @@ > @if (hasPermissionForSubscription) { - - -
- - - + + } @@ -294,30 +294,30 @@ @if (hasPermissionForSubscription) { - - -
- - - + + } diff --git a/apps/client/src/app/pages/faq/faq-page.html b/apps/client/src/app/pages/faq/faq-page.html index 839e8114f..360cbd463 100644 --- a/apps/client/src/app/pages/faq/faq-page.html +++ b/apps/client/src/app/pages/faq/faq-page.html @@ -21,7 +21,7 @@ >
{{ tab.label }}
diff --git a/apps/client/src/app/pages/features/features-page.html b/apps/client/src/app/pages/features/features-page.html index 8eed72289..01fce0f00 100644 --- a/apps/client/src/app/pages/features/features-page.html +++ b/apps/client/src/app/pages/features/features-page.html @@ -140,7 +140,7 @@

Portfolio Calculations @if (hasPermissionForSubscription) { - + }

@@ -159,7 +159,7 @@

Portfolio Allocations @if (hasPermissionForSubscription) { - + }

@@ -197,24 +197,24 @@

@if (hasPermissionForSubscription) { -
- - -
-

- Market Mood - -

-

- Check the current market mood (Fear & Greed Index) within the app. -

-
-
-
-
+
+ + +
+

+ Market Mood + +

+

+ Check the current market mood (Fear & Greed Index) within the app. +

+
+
+
+
}
@@ -223,7 +223,7 @@

Static Analysis @if (hasPermissionForSubscription) { - + }

@@ -290,12 +290,16 @@

@if (!user) { -
-
- Get Started +
+
-
}
diff --git a/apps/client/src/app/pages/home/home-page.html b/apps/client/src/app/pages/home/home-page.html index 839e8114f..360cbd463 100644 --- a/apps/client/src/app/pages/home/home-page.html +++ b/apps/client/src/app/pages/home/home-page.html @@ -21,7 +21,7 @@ >
{{ tab.label }}
diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html index b54e19633..e48b5e6ed 100644 --- a/apps/client/src/app/pages/landing/landing-page.html +++ b/apps/client/src/app/pages/landing/landing-page.html @@ -339,7 +339,8 @@ [href]="testimonial.url" >{{ testimonial.author }} - {{ testimonial.author }}, + {{ testimonial.author }}, {{ testimonial.country }}
diff --git a/apps/client/src/app/pages/portfolio/activities/activities-page.html b/apps/client/src/app/pages/portfolio/activities/activities-page.html index 2e41b1a92..8872470b7 100644 --- a/apps/client/src/app/pages/portfolio/activities/activities-page.html +++ b/apps/client/src/app/pages/portfolio/activities/activities-page.html @@ -11,7 +11,11 @@ [locale]="user?.settings?.locale" [pageIndex]="pageIndex" [pageSize]="pageSize" - [showActions]="!hasImpersonationId && hasPermissionToDeleteActivity && !user.settings.isRestrictedView" + [showActions]=" + !hasImpersonationId && + hasPermissionToDeleteActivity && + !user.settings.isRestrictedView + " [sortColumn]="sortColumn" [sortDirection]="sortDirection" [totalItems]="totalItems" @@ -29,18 +33,21 @@ - @if (!hasImpersonationId && hasPermissionToCreateActivity && - !user.settings.isRestrictedView) { -
- - - -
+ @if ( + !hasImpersonationId && + hasPermissionToCreateActivity && + !user.settings.isRestrictedView + ) { +
+ + + +
} diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html index 57336fd36..bf4d6599f 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -11,48 +11,61 @@ Type - {{ typesTranslationMap[activityForm.controls['type'].value] - }} + {{ + typesTranslationMap[activityForm.controls['type'].value] + }} - {{ typesTranslationMap['BUY'] }} + {{ typesTranslationMap['BUY'] }} Stocks, ETFs, bonds, cryptocurrencies, commodities - {{ typesTranslationMap['FEE'] }} + {{ typesTranslationMap['FEE'] }} One-time fee, annual account fees - {{ typesTranslationMap['DIVIDEND'] }} + {{ typesTranslationMap['DIVIDEND'] }} Distribution of corporate earnings - {{ typesTranslationMap['INTEREST'] }} + {{ typesTranslationMap['INTEREST'] }} Revenue for lending out money - {{ typesTranslationMap['LIABILITY'] }} + {{ typesTranslationMap['LIABILITY'] }} Mortgages, personal loans, credit cards - {{ typesTranslationMap['SELL'] }} + {{ typesTranslationMap['SELL'] }} Stocks, ETFs, bonds, cryptocurrencies, commodities - {{ typesTranslationMap['ITEM'] }} + {{ typesTranslationMap['ITEM'] }} Luxury items, real estate, private companies @@ -60,16 +73,20 @@ -
+
Account
-
+
Update Cash Balance
Name, symbol or ISIN @@ -107,7 +128,11 @@
Name @@ -118,9 +143,9 @@ Currency - {{ currency }} + {{ + currency + }}
@@ -146,7 +171,13 @@
Quantity @@ -155,7 +186,7 @@
@@ -192,17 +223,25 @@
Oops! Could not get the historical exchange rate from - {{ activityForm.controls['date']?.value | date: defaultDateFormat + {{ + activityForm.controls['date']?.value | date: defaultDateFormat }}
Fee @@ -252,11 +296,14 @@
Oops! Could not get the historical exchange rate from - {{ activityForm.controls['date']?.value | date: defaultDateFormat + {{ + activityForm.controls['date']?.value | date: defaultDateFormat }} @@ -265,9 +312,9 @@ Fee - {{ activityForm.controls['currency'].value }} + {{ + activityForm.controls['currency'].value + }}
@@ -340,7 +387,7 @@ (optionSelected)="onAddTag($event)" > {{ tag.name }} @@ -354,7 +401,10 @@ class="flex-grow-1" [isCurrency]="true" [locale]="data.user?.settings?.locale" - [unit]="activityForm.controls['currency']?.value ?? data.user?.settings?.baseCurrency" + [unit]=" + activityForm.controls['currency']?.value ?? + data.user?.settings?.baseCurrency + " [value]="total" />
diff --git a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html index 4dc637aa8..032480acf 100644 --- a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html +++ b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -25,81 +25,86 @@
@if (mode === 'DIVIDEND') { -
- - Holding - - {{ uniqueAssetForm.controls['uniqueAsset']?.value?.name - }} - - {{ holding.name }} -
- {{ holding.symbol | gfSymbol }} · {{ holding.currency - }} + + Holding + + {{ + uniqueAssetForm.controls['uniqueAsset']?.value?.name + }} + - - - - + {{ holding.name }} +
+ {{ holding.symbol | gfSymbol }} · + {{ holding.currency }} +
+
+ +
+
+ +
+
+ } @else {
+

+ + The following file formats are supported: + CSV + or + JSON + +

- - } @else { -
- -

- - The following file formats are supported: - CSV - or - JSON - -

-
}
@@ -114,76 +119,76 @@ >
- @if(errorMessages?.length === 0) { - -
- - -
+ @if (errorMessages?.length === 0) { + +
+ + +
} @else { - - - - -
-
- + + + + +
+
+ +
+
{{ message }}
-
{{ message }}
-
- - -
{{ details[i] | json }}
- - -
- - -
+ + +
{{ details[i] | json }}
+ + +
+ + +
}
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 baa19882d..312061775 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.html +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.html @@ -15,13 +15,20 @@ class="justify-content-end l-2" size="medium" [isPercent]="true" - [value]="isLoading ? undefined : portfolioDetails?.filteredValueInPercentage" + [value]=" + isLoading + ? undefined + : portfolioDetails?.filteredValueInPercentage + " /> @@ -204,7 +211,9 @@
diff --git a/apps/client/src/app/pages/portfolio/analysis/analysis-page.html b/apps/client/src/app/pages/portfolio/analysis/analysis-page.html index 44bb970ef..a21eb8080 100644 --- a/apps/client/src/app/pages/portfolio/analysis/analysis-page.html +++ b/apps/client/src/app/pages/portfolio/analysis/analysis-page.html @@ -19,105 +19,134 @@
@if (user?.settings?.isExperimentalFeatures) { -
-
- - -
-
- Absolute Asset Performance -
-
- -
-
-
-
- Asset Performance +
+
+ + +
+
+ Absolute Asset Performance +
+
+ +
-
- +
+
+ Asset Performance +
+
+ +
-
-
-
- Absolute Currency Performance +
+
+ Absolute Currency Performance +
+
+ +
-
- +
+
+ Currency Performance +
+
+ +
-
-
-
- Currency Performance +

+
+
+ Absolute Net Performance +
+
+ +
-
- -
-
-

-
-
- Absolute Net Performance +
+
+ Net Performance +
+
+ +
-
- -
-
-
-
- Net Performance -
-
- -
-
- - + + +
-
}
diff --git a/apps/client/src/app/pages/portfolio/fire/fire-page.html b/apps/client/src/app/pages/portfolio/fire/fire-page.html index 82f32d683..099f2e98c 100644 --- a/apps/client/src/app/pages/portfolio/fire/fire-page.html +++ b/apps/client/src/app/pages/portfolio/fire/fire-page.html @@ -16,11 +16,14 @@ [currency]="user?.settings?.baseCurrency" [deviceType]="deviceType" [fireWealth]="fireWealth?.toNumber()" - [hasPermissionToUpdateUserSettings]="!hasImpersonationId && hasPermissionToUpdateUserSettings" + [hasPermissionToUpdateUserSettings]=" + !hasImpersonationId && hasPermissionToUpdateUserSettings + " [locale]="user?.settings?.locale" [ngStyle]="{ opacity: user?.subscription?.type === 'Basic' ? '0.67' : 'initial', - 'pointer-events': user?.subscription?.type === 'Basic' ? 'none' : 'initial' + 'pointer-events': + user?.subscription?.type === 'Basic' ? 'none' : 'initial' }" [projectedTotalAmount]="user?.settings?.projectedTotalAmount" [retirementDate]="user?.settings?.retirementDate" diff --git a/apps/client/src/app/pages/portfolio/holdings/holdings-page.html b/apps/client/src/app/pages/portfolio/holdings/holdings-page.html index 4aadf4a0b..bb8769c5a 100644 --- a/apps/client/src/app/pages/portfolio/holdings/holdings-page.html +++ b/apps/client/src/app/pages/portfolio/holdings/holdings-page.html @@ -14,15 +14,15 @@ [locale]="user?.settings?.locale" /> @if (hasPermissionToCreateOrder && holdings?.length > 0) { - + }
diff --git a/apps/client/src/app/pages/portfolio/portfolio-page.html b/apps/client/src/app/pages/portfolio/portfolio-page.html index 839e8114f..360cbd463 100644 --- a/apps/client/src/app/pages/portfolio/portfolio-page.html +++ b/apps/client/src/app/pages/portfolio/portfolio-page.html @@ -21,7 +21,7 @@ >
{{ tab.label }}
diff --git a/apps/client/src/app/pages/pricing/pricing-page.html b/apps/client/src/app/pages/pricing/pricing-page.html index 926ff24af..e4537ebb1 100644 --- a/apps/client/src/app/pages/pricing/pricing-page.html +++ b/apps/client/src/app/pages/pricing/pricing-page.html @@ -107,7 +107,7 @@
@@ -164,7 +164,7 @@
@@ -243,19 +243,22 @@ {{ baseCurrency }} {{ price }} {{ baseCurrency }} {{ price - coupon }} + > {{ baseCurrency }} {{ + price - coupon + }} {{ baseCurrency }} {{ price }}{{ baseCurrency }} {{ + price + }} per year