Browse Source

feat: fixed the untagged template literals

pull/5453/head
Aaditya Ashwin Rao 4 months ago
parent
commit
f0bac2f942
  1. 2
      apps/client/src/app/components/admin-users/admin-users.html
  2. 5
      apps/client/src/app/pages/portfolio/allocations/allocations-page.html
  3. 6
      apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html
  4. 10
      libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html

2
apps/client/src/app/components/admin-users/admin-users.html

@ -30,7 +30,7 @@
[ngClass]="{ [ngClass]="{
'text-line-through': element.role === 'INACTIVE' 'text-line-through': element.role === 'INACTIVE'
}" }"
>{{ (element.id | slice: 0 : 5) + '...' }}</span >{{ `${element.id | slice: 0 : 5}...` }}</span
> >
@if (element.subscription?.expiresAt) { @if (element.subscription?.expiresAt) {
<gf-premium-indicator <gf-premium-indicator

5
apps/client/src/app/pages/portfolio/allocations/allocations-page.html

@ -26,9 +26,8 @@
<mat-progress-bar <mat-progress-bar
mode="determinate" mode="determinate"
[title]=" [title]="
( `${(portfolioDetails?.summary?.filteredValueInPercentage * 100
portfolioDetails?.summary?.filteredValueInPercentage * 100 ).toFixed(2)}%`
).toFixed(2) + '%'
" "
[value]="portfolioDetails?.summary?.filteredValueInPercentage * 100" [value]="portfolioDetails?.summary?.filteredValueInPercentage * 100"
/> />

6
apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html

@ -32,10 +32,10 @@
personalFinanceTool.name personalFinanceTool.name
}} - {{ personalFinanceTool.slogan }}" }} - {{ personalFinanceTool.slogan }}"
[routerLink]="[ [routerLink]="[
'/' + pathResources, `/${pathResources}`,
pathPersonalFinanceTools, pathPersonalFinanceTools,
pathAlternativeTo + `${pathAlternativeTo}
(personalFinanceTool.alias ?? personalFinanceTool.key) ${personalFinanceTool.alias ?? personalFinanceTool.key}`
]" ]"
> >
<div class="flex-grow-1 overflow-hidden"> <div class="flex-grow-1 overflow-hidden">

10
libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html

@ -8,23 +8,23 @@
class="day" class="day"
[ngClass]="{ [ngClass]="{
'cursor-pointer valid': isDateOfInterest( 'cursor-pointer valid': isDateOfInterest(
itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1) `${itemByMonth.key}-${i+1<10? `0${i+1}`:i+1}`
), ),
available: available:
marketDataByMonth[itemByMonth.key][ marketDataByMonth[itemByMonth.key][
i + 1 < 10 ? '0' + (i + 1) : i + 1 i + 1 < 10 ? `0${i + 1}` : i + 1
]?.marketPrice, ]?.marketPrice,
today: isToday( today: isToday(
itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1) `${itemByMonth.key}-${i+1<10?`0${i + 1}`:i+1}`
) )
}" }"
[title]=" [title]="
(itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1) (`${itemByMonth.key}-${i + 1 < 10 ? `0${i + 1}` : i + 1}`
| date: defaultDateFormat) ?? '' | date: defaultDateFormat) ?? ''
" "
(click)=" (click)="
onOpenMarketDataDetail({ onOpenMarketDataDetail({
day: i + 1 < 10 ? '0' + (i + 1) : i + 1, day: i + 1 < 10 ? `0${i + 1}` : i + 1,
yearMonth: itemByMonth.key yearMonth: itemByMonth.key
}) })
" "

Loading…
Cancel
Save