remove duplicated column and fix null in checkbox

This commit is contained in:
Eugenio Romano
2019-06-11 17:28:12 +01:00
parent fb082cdfdc
commit 924c20d410
2 changed files with 1 additions and 7 deletions

View File

@@ -753,7 +753,7 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte
this.selection = event.selection.map((entry) => entry.node);
const domEvent = new CustomEvent('node-unselect', {
detail: {
node: event.row.node,
node: event.row ? event.row.node : null,
selection: this.selection
},
bubbles: true