Hi,
I'm using esri's javascript api to make a web map. Below you can see the popup template I'm trying to create for my geojson layer. Unfortunately, the dateFormat: "dayShortMonthYearLongTime" component isn't working because the geojson file is storing the date in ISO-8601 date format. Is there anyway to modify the geojson date field so that dateFormat: "dayShortMonthYearLongTime" works?
Note: the geojson file is https://opendata.arcgis.com/datasets/4af7c514f77b48db93ce0d0649a31aa9_0.geojson
const currentClosuresTemplate = {
title: "Current Road Closure Info",
content: "Street Closed: {STREET_NAME} <br> Closed until: {DATE_TO}",
fieldInfos: [
{
fieldName: "DATE_TO",
format: {
dateFormat: "dayShortMonthYearLongTime"
}
}
]
}