1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Fix custom theme integration with date time field

This commit is contained in:
Andrew Kingston 2021-09-10 16:36:43 +01:00
parent 2820b6adef
commit cc0c0104fe
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
import { themeStore } from "stores" import { themeStore } from "stores"
</script> </script>
<div style={$themeStore.customThemeCss}> <div style={$themeStore.customThemeCss} id="theme-root">
<slot /> <slot />
</div> </div>

View file

@ -56,7 +56,7 @@
disabled={fieldState.disabled} disabled={fieldState.disabled}
error={fieldState.error} error={fieldState.error}
id={fieldState.fieldId} id={fieldState.fieldId}
appendTo={document.getElementById("app-root")} appendTo={document.getElementById("theme-root")}
{enableTime} {enableTime}
{placeholder} {placeholder}
/> />