Use the passed argument

This commit is contained in:
Amitai Burstein 2023-04-17 22:06:26 +03:00 committed by GitHub
parent 7c10c7ae63
commit a36e9186d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ prototypeFor field record =
where where
parentFormContext = ?formContext parentFormContext = ?formContext
prototype :: Html prototype :: Html
prototype = let ?formContext = parentFormContext { model = parentFormContext.model |> set field [newRecord] } in nestedFormFor field renderTagForm prototype = let ?formContext = parentFormContext { model = parentFormContext.model |> set field [record] } in nestedFormFor field renderTagForm
renderTagForm :: (?formContext :: FormContext Tag) => Html renderTagForm :: (?formContext :: FormContext Tag) => Html
renderTagForm = [hsx| renderTagForm = [hsx|
{(textField #name) { disableLabel = True, placeholder = "Tag name" } } {(textField #name) { disableLabel = True, placeholder = "Tag name" } }
|] |]