Browse Source
Merge branch 'main' into task/i18n-ukrainian-single-words
pull/6978/head
Thomas Kaul
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
14 additions and
6 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.scss
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html
|
|
|
@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the language localization for Ukrainian (`uk`) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed a layout issue in the asset profile dialog of the admin control by truncating long titles |
|
|
|
|
|
|
|
## 3.7.0 - 2026-06-02 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
@ -14,4 +14,8 @@ |
|
|
|
top: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.mat-mdc-dialog-title { |
|
|
|
padding-right: 0.5rem !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -1,10 +1,10 @@ |
|
|
|
<div class="d-flex flex-column h-100"> |
|
|
|
<div class="d-flex mb-3"> |
|
|
|
<h1 class="flex-grow-1 m-0" mat-dialog-title> |
|
|
|
<span>{{ assetProfile?.name ?? data.symbol }}</span> |
|
|
|
</h1> |
|
|
|
<h1 class="align-items-center d-flex mb-3" mat-dialog-title> |
|
|
|
<span class="flex-grow-1 text-truncate">{{ |
|
|
|
assetProfile?.name ?? data.symbol |
|
|
|
}}</span> |
|
|
|
<button |
|
|
|
class="mx-1 no-min-width px-2" |
|
|
|
class="ml-1 no-min-width px-2" |
|
|
|
mat-button |
|
|
|
type="button" |
|
|
|
[matMenuTriggerFor]="assetProfileActionsMenu" |
|
|
|
@ -87,7 +87,7 @@ |
|
|
|
<ng-container i18n>Delete</ng-container> |
|
|
|
</button> |
|
|
|
</mat-menu> |
|
|
|
</div> |
|
|
|
</h1> |
|
|
|
|
|
|
|
<div class="flex-grow-1" mat-dialog-content> |
|
|
|
<gf-line-chart |
|
|
|
|