Skip to content

Commit

Permalink
AAE-28454 Add column merge to admin tasklist component
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoABastos committed Dec 6, 2024
1 parent 9faea5c commit 8d101b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
[actionsPosition]="actionsPosition"
[contextMenu]="showContextMenu"
[resolverFn]="boundReplacePriorityValues"
[showProvidedActions]="showProvidedActions"
[showMainDatatableActions]="showMainDatatableActions"
[isResizingEnabled]="isResizingEnabled"
(showRowActionsMenu)="onShowRowActionsMenu($event)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ export abstract class BaseTaskListCloudComponent<T = unknown>
@Input()
showContextMenu: boolean = false;

/** Toggles the provided actions. */
@Input()
showProvidedActions: boolean = false;

/** Toggles main datatable actions. */
@Input()
showMainDatatableActions: boolean = false;
Expand Down

0 comments on commit 8d101b8

Please sign in to comment.