You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2025. It is now read-only.
I want to get a duration from a start time column named startTime and an end time column named endTime. The times in these columns are strings in the format "HH:mm". For this I want to use the Luxon library. In order to do so I tried something like:
Hello,
I want to get a duration from a start time column named startTime and an end time column named endTime. The times in these columns are strings in the format "HH:mm". For this I want to use the Luxon library. In order to do so I tried something like:
${
luxon.DateTime.fromFormat(this.endTime, "HH:mm").diff(luxon.DateTime.fromFormat(this.startTime, "HH:mm"), ["hours", "minutes"]).toFormat("hh:mm") }
But because this does not work and I am totally unable to get it to work I need your help!
Thank you all in advance!