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

@ -334,12 +334,6 @@
[format]="enableMediumTimeFormat ? 'medium' : 'timeAgo'"
class="adf-desktop-only adf-ellipsis-cell">
</data-column>
<data-column
title="{{'DOCUMENT_LIST.COLUMNS.CREATED' | translate}}"
key="createdAt"
type="date"
class="adf-desktop-only adf-ellipsis-cell">
</data-column>
</data-columns>

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