Feature/improve usability of platform and tag management (#3144)
* Improve usability * Update changelog
This commit is contained in:
parent
8420cb830c
commit
00c2ede85e
@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- Extended the content of the _General_ section by the product roadmap on the Frequently Asked Questions (FAQ) page
|
- Extended the content of the _General_ section by the product roadmap on the Frequently Asked Questions (FAQ) page
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the usability of the platform management in the admin control panel
|
||||||
|
- Improved the usability of the tag management in the admin control panel
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed the date conversion of the import of historical market data in the admin control panel
|
- Fixed the date conversion of the import of historical market data in the admin control panel
|
||||||
|
@ -91,7 +91,11 @@
|
|||||||
<span i18n>Edit</span>
|
<span i18n>Edit</span>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
<button mat-menu-item (click)="onDeletePlatform(element.id)">
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
[disabled]="element.accountCount > 0"
|
||||||
|
(click)="onDeletePlatform(element.id)"
|
||||||
|
>
|
||||||
<span class="align-items-center d-flex">
|
<span class="align-items-center d-flex">
|
||||||
<ion-icon class="mr-2" name="trash-outline" />
|
<ion-icon class="mr-2" name="trash-outline" />
|
||||||
<span i18n>Delete</span>
|
<span i18n>Delete</span>
|
||||||
|
@ -71,7 +71,11 @@
|
|||||||
<span i18n>Edit</span>
|
<span i18n>Edit</span>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
<button mat-menu-item (click)="onDeleteTag(element.id)">
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
[disabled]="element.activityCount > 0"
|
||||||
|
(click)="onDeleteTag(element.id)"
|
||||||
|
>
|
||||||
<span class="align-items-center d-flex">
|
<span class="align-items-center d-flex">
|
||||||
<ion-icon class="mr-2" name="trash-outline" />
|
<ion-icon class="mr-2" name="trash-outline" />
|
||||||
<span i18n>Delete</span>
|
<span i18n>Delete</span>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user