Replies: 1 comment
-
|
Hi @aowdnmp - sorry about that, there was an issue in the last release but this is fixed in version 3.4.4 - just update your client app version! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, since the lastest updates of Budibase I have a JS that was applying a date comparison that is not working anymore, it was working fine until few weeks ago. Anyone found similar issues and understood whta is the issue?
Below the JS returning tomorrow's date.
Thanks
const today = new Date();
today.setDate(today.getDate() + 1); // Increment day and handle month/year transitions
const formattedDate =
String(today.getMonth() + 1).padStart(2, '0') + '/' +
String(today.getDate()).padStart(2, '0') + '/' +
today.getFullYear();
return formattedDate;
Beta Was this translation helpful? Give feedback.
All reactions