Converting dates in mapped select

Hey gang so I have this query that retrieves a list of entries from my DB, with one column being the entry id and the other columns containing various things, notably a date:

I have a select in mapped mode collecting these dates for the selection:
image

For value I use the item id but for the label I would like to display said date as Mon-yyyy instead of the classic yyyy-mm-dd (example: "2023-11-14" would show only as "Nov 2023").

Does anyone have a suggestion on how to make it happen?

Cheers!

Try using moment

1 Like

Moment worked like a charm
image

1 Like