Browse Source

Merge branch 'main' into task/improve-account-name-display-in-accounts-table

pull/7044/head
Thomas Kaul 3 months ago
committed by GitHub
parent
commit
0d9fea7f2d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 2
      apps/client/src/app/pages/about/overview/about-overview-page.html
  3. 2
      apps/client/src/app/pages/faq/overview/faq-overview-page.html
  4. 2
      apps/client/src/app/pages/faq/saas/saas-page.html
  5. 2
      apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html
  6. 2
      apps/client/src/locales/messages.de.xlf
  7. 12
      libs/ui/src/lib/activities-table/activities-table.component.html

2
CHANGELOG.md

@ -11,7 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the styling of the checkboxes to consistently use the primary color in their states
- Improved the account name display in the accounts table
- Improved the name display in the activities table
- Improved the user id display in the users table of the admin control panel
- Improved the language localization for German (`de`)
## 3.11.0 - 2026-06-14

2
apps/client/src/app/pages/about/overview/about-overview-page.html

@ -94,7 +94,7 @@
<ng-container i18n>or start a discussion at</ng-container>
<ng-container>&nbsp;</ng-container>
<a
href="https://github.com/ghostfolio/ghostfolio"
href="https://github.com/ghostfolio/ghostfolio/discussions"
i18n-title
title="Find Ghostfolio on GitHub"
>GitHub</a

2
apps/client/src/app/pages/faq/overview/faq-overview-page.html

@ -193,7 +193,7 @@
}
or start a discussion at
<a
href="https://github.com/ghostfolio/ghostfolio"
href="https://github.com/ghostfolio/ghostfolio/discussions"
title="Find Ghostfolio on GitHub"
>GitHub</a
>.</mat-card-content

2
apps/client/src/app/pages/faq/saas/saas-page.html

@ -186,7 +186,7 @@
}
or start a discussion at
<a
href="https://github.com/ghostfolio/ghostfolio"
href="https://github.com/ghostfolio/ghostfolio/discussions"
title="Find Ghostfolio on GitHub"
>GitHub</a
>.</mat-card-content

2
apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html

@ -294,7 +294,7 @@
>
or start a discussion at
<a
href="https://github.com/ghostfolio/ghostfolio"
href="https://github.com/ghostfolio/ghostfolio/discussions"
title="Find Ghostfolio on GitHub"
>GitHub</a
>.</mat-card-content

2
apps/client/src/locales/messages.de.xlf

@ -2143,7 +2143,7 @@
</trans-unit>
<trans-unit id="7500665368930738879" datatype="html">
<source>or start a discussion at</source>
<target state="translated">oder beginne eine Diskussion unter</target>
<target state="translated">oder beginne eine Diskussion bei</target>
<context-group purpose="location">
<context context-type="sourcefile">apps/client/src/app/pages/about/overview/about-overview-page.html</context>
<context context-type="linenumber">94</context>

12
libs/ui/src/lib/activities-table/activities-table.component.html

@ -161,13 +161,11 @@
<ng-container i18n>Name</ng-container>
</th>
<td *matCellDef="let element" class="px-1" mat-cell>
<div class="align-items-center d-flex line-height-1">
<div>
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span>
@if (element.isDraft) {
<span class="badge badge-secondary ml-1" i18n>Draft</span>
}
</div>
<div class="align-items-center d-flex line-height-1 text-nowrap">
<span class="text-truncate">{{ element.SymbolProfile?.name }}</span>
@if (element.isDraft) {
<span class="badge badge-secondary ml-1" i18n>Draft</span>
}
</div>
@if (
element.SymbolProfile?.dataSource !== 'MANUAL' &&

Loading…
Cancel
Save