fix: #721 Datetime args not being rendered

This commit is contained in:
jamesread
2025-11-22 08:34:53 +00:00
parent d4c80c65c2
commit 15390f7b80
3 changed files with 143 additions and 0 deletions

View File

@@ -160,6 +160,10 @@ function getInputType(arg) {
return 'text'
}
if (arg.type === 'datetime') {
return 'datetime-local'
}
return arg.type
}