mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-08-07 17:48:54 +00:00
cancellable events for DataTable and DocumentList (#1682)
* cancellable events for DataTable and DocumentList * more typed events and code fixes * code fixes
This commit is contained in:
committed by
Eugenio Romano
parent
3e342863fd
commit
4ca18bc8f9
@@ -265,7 +265,7 @@ describe('ActivitiProcessInstanceListComponent', () => {
|
||||
let row = new ObjectDataRow({
|
||||
id: 999
|
||||
});
|
||||
let rowEvent = <DataRowEvent> {value: row};
|
||||
let rowEvent = new DataRowEvent(row, null);
|
||||
|
||||
component.rowClick.subscribe(taskId => {
|
||||
expect(taskId).toEqual(999);
|
||||
|
Reference in New Issue
Block a user