mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-6323] dynamic content list changing columns order with drag drop (#3557)
* ACS-6323 Allow to drag and drop name column * ACS-6323 Made rest columns in personal files as draggable * ACS-6323 Enabled dragging columns for rest of lists * ACS-6323 Small correction * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Fixed e2e * ACS-6323 Revert change * e2e test fix * e2e test fix --------- Co-authored-by: akash.rathod@hyland.com <akash.rathod@hyland.com>
This commit is contained in:
@@ -35,6 +35,7 @@
|
||||
<ng-container *ngFor="let column of columns; trackBy: trackByColumnId">
|
||||
<ng-container *ngIf="column.template && !(column.desktopOnly && isSmallScreen)">
|
||||
<data-column
|
||||
[draggable]="column.draggable"
|
||||
[key]="column.key"
|
||||
[title]="column.title"
|
||||
[type]="column.type"
|
||||
@@ -52,6 +53,7 @@
|
||||
<ng-container *ngIf="!column.template && !(column.desktopOnly && isSmallScreen)">
|
||||
<data-column
|
||||
[key]="column.key"
|
||||
[draggable]="column.draggable"
|
||||
[title]="column.title"
|
||||
[type]="column.type"
|
||||
[format]="column.format"
|
||||
|
Reference in New Issue
Block a user