0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00

fix the date formatting typo (#8253)

This commit is contained in:
Paul D'Ambra 2022-01-25 12:14:09 +00:00 committed by GitHub
parent dab44302bb
commit 3b14f7f20a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@
<env name="KAFKA_URL" value="kafka://localhost" />
<env name="DATABASE_URL" value="postgres://posthog:posthog@localhost:5432/posthog" />
<env name="SKIP_SERVICE_VERSION_REQUIREMENTS" value="1" />
<env name="PRINT_SQL" value="1" />
</envs>
<option name="SDK_HOME" value="$PROJECT_DIR$/env/bin/python" />
<option name="WORKING_DIRECTORY" value="" />

View File

@ -244,7 +244,7 @@ export function PropertyValue({
showNow={false}
value={dayJSMightParse(value) ? dayjs(value) : null}
onOk={(selectedDate) => {
setValue(selectedDate.format('YYYY-MM-DD HH:MM:ss'))
setValue(selectedDate.format('YYYY-MM-DD HH:mm:ss'))
}}
getPopupContainer={(trigger: Element | null) => {
const container = trigger?.parentElement?.parentElement?.parentElement