Hello guys, in this case I am having a problem with an RDT, the thing is that this table is showing the values of an index created in Elasticsearch, which contains a property of type date with a format of epoch_millis, something like this:
{
index: "epoch-millis-index",
body: {
mappings: {
properties: {
date: {
type: "date",
format: "epoch_millis",
},
},
},
},
},
So when the table shows the data, the column that belongs to the date is not formatted to a real date, instead it shows “Invalid Date”. The following image is an example of how it is showing now:
And what I want is to show the formatted date, as in this image for example:
Please if you could help me with a guide to where the problem is, I would appreciate it.
Thanks.