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]="{ [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

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 informed decisions. Our journey so far has been incredible, with
over 300 releases since the over 300 releases since the
<a href="../en/blog/2021/07/hello-ghostfolio">first major release</a <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 contributors from around the globe. Ghostfolio was recently featured
on on
<a <a
@ -29,7 +29,7 @@
target="_blank" target="_blank"
>Hacker News</a >Hacker News</a
>, where it ranked on the front page and briefly hit the #1 spot. >, 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 These achievements emphasize the growing recognition for our project
and the path we are on. and the path we are on.
</p> </p>

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

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

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

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

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

@ -25,11 +25,11 @@
<mat-card-content> <mat-card-content>
<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"
/> />
</mat-card-content> </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.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">
<div class="h6 m-0 text-truncate" i18n> <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 <div
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
}) })
" "

8813
package-lock.json

File diff suppressed because it is too large

4
package.json

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

Loading…
Cancel
Save