Browse Source
Feature/change edit button to a in admin market data page (#3164)
* Change edit button to a
* Update changelog
pull/3129/head^2
Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
8 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/admin-market-data.html
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Changed |
|
|
|
|
|
|
|
- Moved the support to grant private access with permissions from experimental to general availability |
|
|
|
- Improved the usability to edit market data in the admin control panel |
|
|
|
|
|
|
|
## 2.64.0 - 2024-03-16 |
|
|
|
|
|
|
|
|
|
@ -161,20 +161,20 @@ |
|
|
|
<ion-icon name="ellipsis-horizontal" /> |
|
|
|
</button> |
|
|
|
<mat-menu #assetProfileActionsMenu="matMenu" xPosition="before"> |
|
|
|
<button |
|
|
|
<a |
|
|
|
mat-menu-item |
|
|
|
(click)=" |
|
|
|
onOpenAssetProfileDialog({ |
|
|
|
dataSource: element.dataSource, |
|
|
|
symbol: element.symbol |
|
|
|
}) |
|
|
|
" |
|
|
|
[queryParams]="{ |
|
|
|
assetProfileDialog: true, |
|
|
|
dataSource: element.dataSource, |
|
|
|
symbol: element.symbol |
|
|
|
}" |
|
|
|
[routerLink]="[]" |
|
|
|
> |
|
|
|
<span class="align-items-center d-flex"> |
|
|
|
<ion-icon class="mr-2" name="create-outline" /> |
|
|
|
<span i18n>Edit</span> |
|
|
|
</span> |
|
|
|
</button> |
|
|
|
</a> |
|
|
|
<button |
|
|
|
mat-menu-item |
|
|
|
[disabled]="element.activitiesCount !== 0" |
|
|
|