This commit is contained in:
Ad Schellevis 2024-04-17 16:36:20 +02:00
parent 353c89f5c0
commit 08ee9c0175
1 changed files with 1 additions and 1 deletions

View File

@ -1239,7 +1239,7 @@ Grid.defaults = {
return value ? moment(parseInt(value)*1000) : "";
},
to: function (value) {
if (!Object.is(value)) {
if (!moment.isMoment(value)) {
value = moment(parseInt(value)*1000);
}
return value ? value.format("lll") : "";