Lots of changes. Things are working better. Files are now showing for the session and presenter. Next is location and event.

This commit is contained in:
Scott Idem
2024-08-09 17:50:54 -04:00
parent 30e6384772
commit 9a1995dd9f
25 changed files with 683 additions and 176 deletions

View File

@@ -114,11 +114,14 @@ export let iso_datetime_formatter = function iso_datetime_formatter(
datetime_string = dayjs(raw_datetime).format('HH:mm');
break;
case 'time_short_no_leading':
datetime_string = dayjs(raw_datetime).format('h:mm A');
datetime_string = dayjs(raw_datetime).format('H:mm');
break;
case 'time_us_short':
datetime_string = dayjs(raw_datetime).format('hh:mm A');
break;
case 'time_us_short_no_leading':
datetime_string = dayjs(raw_datetime).format('h:mm A');
break;
case 'week_long':
datetime_string = dayjs(raw_datetime).format('dddd');
break;