mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
remove duplicated column and fix null in checkbox
This commit is contained in:
parent
fb082cdfdc
commit
924c20d410
@ -334,12 +334,6 @@
|
|||||||
[format]="enableMediumTimeFormat ? 'medium' : 'timeAgo'"
|
[format]="enableMediumTimeFormat ? 'medium' : 'timeAgo'"
|
||||||
class="adf-desktop-only adf-ellipsis-cell">
|
class="adf-desktop-only adf-ellipsis-cell">
|
||||||
</data-column>
|
</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>
|
</data-columns>
|
||||||
|
|
||||||
|
@ -753,7 +753,7 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte
|
|||||||
this.selection = event.selection.map((entry) => entry.node);
|
this.selection = event.selection.map((entry) => entry.node);
|
||||||
const domEvent = new CustomEvent('node-unselect', {
|
const domEvent = new CustomEvent('node-unselect', {
|
||||||
detail: {
|
detail: {
|
||||||
node: event.row.node,
|
node: event.row ? event.row.node : null,
|
||||||
selection: this.selection
|
selection: this.selection
|
||||||
},
|
},
|
||||||
bubbles: true
|
bubbles: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user