Browse Source
Feature/change direction of ellipsis icon to horizontal in tables (#2055)
* Change direction of ellipsis icon to horizontal
* Update changelog
pull/2059/head^2
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with
10 additions and
9 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/access-table/access-table.component.html
-
apps/client/src/app/components/accounts-table/accounts-table.component.html
-
apps/client/src/app/components/admin-jobs/admin-jobs.html
-
apps/client/src/app/components/admin-market-data/admin-market-data.html
-
apps/client/src/app/components/admin-platform/admin-platform.component.html
-
apps/client/src/app/components/admin-users/admin-users.html
-
libs/ui/src/lib/activities-table/activities-table.component.html
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Changed |
|
|
|
|
|
|
|
- Extended the clone functionality of a transaction by the quantity |
|
|
|
- Changed the direction of the ellipsis icon in various tables |
|
|
|
- Refreshed the cryptocurrencies list |
|
|
|
- Upgraded `Node.js` from version `16` to `18` (`Dockerfile`) |
|
|
|
|
|
|
|
|
|
@ -47,7 +47,7 @@ |
|
|
|
[matMenuTriggerFor]="transactionMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #transactionMenu="matMenu" xPosition="before"> |
|
|
|
<button mat-menu-item (click)="onDeleteAccess(element.id)"> |
|
|
@ -57,6 +57,6 @@ |
|
|
|
</td> |
|
|
|
</ng-container> |
|
|
|
|
|
|
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> |
|
|
|
<tr mat-row *matRowDef="let row; columns: displayedColumns"></tr> |
|
|
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr> |
|
|
|
<tr *matRowDef="let row; columns: displayedColumns" mat-row></tr> |
|
|
|
</table> |
|
|
|
|
|
@ -216,7 +216,7 @@ |
|
|
|
[matMenuTriggerFor]="accountMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #accountMenu="matMenu" xPosition="before"> |
|
|
|
<button mat-menu-item (click)="onUpdateAccount(element)"> |
|
|
|
|
|
@ -108,7 +108,7 @@ |
|
|
|
[matMenuTriggerFor]="jobActionsMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #jobActionsMenu="matMenu" xPosition="before"> |
|
|
|
<button mat-menu-item (click)="onViewData(job.data)"> |
|
|
|
|
|
@ -140,7 +140,7 @@ |
|
|
|
[matMenuTriggerFor]="assetProfileActionsMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #assetProfileActionsMenu="matMenu" xPosition="before"> |
|
|
|
<button |
|
|
|
|
|
@ -82,7 +82,7 @@ |
|
|
|
[matMenuTriggerFor]="platformMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #platformMenu="matMenu" xPosition="before"> |
|
|
|
<button mat-menu-item (click)="onUpdatePlatform(element)"> |
|
|
|
|
|
@ -109,7 +109,7 @@ |
|
|
|
[matMenuTriggerFor]="userMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #userMenu="matMenu" xPosition="before"> |
|
|
|
<button |
|
|
|
|
|
@ -504,7 +504,7 @@ |
|
|
|
[matMenuTriggerFor]="activityMenu" |
|
|
|
(click)="$event.stopPropagation()" |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical"></ion-icon> |
|
|
|
<ion-icon name="ellipsis-horizontal"></ion-icon> |
|
|
|
</button> |
|
|
|
<mat-menu #activityMenu="matMenu" xPosition="before"> |
|
|
|
<button mat-menu-item (click)="onUpdateActivity(element)"> |
|
|
|