diff --git a/CHANGELOG.md b/CHANGELOG.md index f0476db6..30bf4f1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next * Add `text` as a synonym for `string` +* Fix multiline input not being visible in the web UI ### v1.5.3 (2024-10-06) diff --git a/web/src/App.tsx b/web/src/App.tsx index 4cfdbcca..ed82ae89 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -163,7 +163,7 @@ export default function App({ widget = false }: { widget?: boolean }) { autoCapitalize="none" spellCheck="false" id="input-text" - rows={1} + rows={currentInput.split('\n').length} ref={inputText} value={currentInput} onInput={update}