fix date sorting

This commit is contained in:
Martin McKeaveney 2021-08-10 17:41:11 +01:00
parent 7d49634c6d
commit 962e940aab
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@
const dispatch = createEventDispatcher() const dispatch = createEventDispatcher()
const onChange = e => { const onChange = e => {
value = e.detail const isoString = e.detail.toISOString()
console.log(value.toISOString()) value = isoString
dispatch("change", e.detail) dispatch("change", isoString)
} }
</script> </script>