Browse Source

problem fixed

pull/5449/head
Aaditya Ashwin Rao 4 months ago
parent
commit
5418d2c391
  1. 2
      apps/client/src/app/components/admin-users/admin-users.html
  2. 4
      apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html
  3. 4
      apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html
  4. 4
      apps/client/src/app/pages/blog/2024/09/hacktoberfest-2024/hacktoberfest-2024-page.html
  5. 10
      apps/client/src/app/pages/portfolio/allocations/allocations-page.html
  6. 6
      apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html
  7. 10
      libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html
  8. 8813
      package-lock.json
  9. 4
      package.json

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

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

4
apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html

@ -21,7 +21,7 @@
informed decisions. Our journey so far has been incredible, with
over 300 releases since the
<a href="../en/blog/2021/07/hello-ghostfolio">first major release</a
>, close to 300000 pulls on Docker Hub, and collaboration with 50+
>, close to 300,000 pulls on Docker Hub, and collaboration with 50+
contributors from around the globe. Ghostfolio was recently featured
on
<a
@ -29,7 +29,7 @@
target="_blank"
>Hacker News</a
>, where it ranked on the front page and briefly hit the #1 spot.
Shortly after, the projects repository was trending on GitHub.
Shortly after, the project's repository was trending on GitHub.
These achievements emphasize the growing recognition for our project
and the path we are on.
</p>

4
apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html

@ -48,10 +48,10 @@
</p>
<p>
The software is used daily by a thriving global community. With over
<a [routerLink]="routerLinkOpenStartup">2600 stars on GitHub</a>
<a [routerLink]="routerLinkOpenStartup">2,600 stars on GitHub</a>
and
<a [routerLink]="routerLinkOpenStartup"
>300000+ pulls on Docker Hub</a
>300,000+ pulls on Docker Hub</a
>, Ghostfolio has gained widespread recognition for its
user-friendly experience and simplicity.
</p>

4
apps/client/src/app/pages/blog/2024/09/hacktoberfest-2024/hacktoberfest-2024-page.html

@ -51,10 +51,10 @@
<p>
The OSS project counting more than 100 contributors is used daily by
its growing global community. With over
<a [routerLink]="routerLinkOpenStartup">4000 stars on GitHub</a>
<a [routerLink]="routerLinkOpenStartup">4,000 stars on GitHub</a>
and
<a [routerLink]="routerLinkOpenStartup"
>800000+ pulls on Docker Hub</a
>800,000+ pulls on Docker Hub</a
>, Ghostfolio has gained widespread recognition for its
user-friendly experience and simplicity.
</p>

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

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

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

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

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

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

8813
package-lock.json

File diff suppressed because it is too large

4
package.json

@ -143,13 +143,13 @@
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "20.1.3",
"@angular-devkit/build-angular": "^20.2.1",
"@angular-devkit/core": "20.1.3",
"@angular-devkit/schematics": "20.1.3",
"@angular-eslint/eslint-plugin": "20.1.1",
"@angular-eslint/eslint-plugin-template": "20.1.1",
"@angular-eslint/template-parser": "20.1.1",
"@angular/cli": "20.1.3",
"@angular/cli": "^20.2.1",
"@angular/compiler-cli": "20.1.3",
"@angular/language-service": "20.1.3",
"@angular/localize": "20.1.3",

Loading…
Cancel
Save