How to format the date notation in airtable

Hello.

I have figured out that it needs some formatting to display the date and time as shown in the image.

I would like to know how to format the date data after getting it.

I’m hoping to do something like ‘yyyy/mm/dd’ in bubble.

スクリーンショット 2021-12-16 22.23.45

Hi @hiroto ,
Right now we do not have a Date plugin, but it’s a feature we want to add.

In the meantime, you can use javascript for that
new Date(YOUR_DATE).toLocaleDateString()

2 Likes

If you’d like to upvote this feature, I just created the request right here: Add date formatting | Feature Requests | weweb.io

In the meantime, you could use this element in the dev kit but bear in mind it’s not very stable :confused:

1 Like

Thank you!
I’ll give it a try!