Work on LiveQuery

This commit is contained in:
Scott Idem
2024-07-02 09:33:16 -04:00
parent ed89c61aed
commit 40aba339f8
2 changed files with 48 additions and 23 deletions

View File

@@ -121,7 +121,7 @@ export let iso_datetime_formatter = function iso_datetime_formatter(
datetime_string = dayjs(raw_datetime).format('dd');
break;
default:
console.log(`The named format passed (${named_format}) did not match a common name. Trying to format with the named format value.`);
// console.log(`The named format passed (${named_format}) did not match a common name. Trying to format with the named format value.`);
datetime_string = dayjs(raw_datetime).format(named_format);
// datetime_string = dayjs(raw_datetime).format('YYYY-MM-DD HH:mm:ss');
}