Skip to content

Commit

Permalink
Fix du paramètre visible obligatoire pour faire l'édition d'une date (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmichael committed Jan 31, 2023
1 parent c0a5055 commit 2559753
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ export class EntityTableComponent implements OnInit, OnChanges, OnDestroy {
);
}
} else if (column.type === 'date') {
if (column.visible) {
if (column.visible !== false) {
if (item[key]) {
let date = moment(item[key]);
item[key] = date.utc().format('YYYY-MM-DD');
Expand Down

0 comments on commit 2559753

Please sign in to comment.