summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/ComboBox.tsx
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-18 19:24:28 -0700
committerTy Dunn <ty@tydunn.com>2023-06-18 19:24:28 -0700
commit8cf2962eb6cf29e9b151fbba4954facdfa03ca2e (patch)
tree3a00f33a8634ae84a0dafbdd3ced725c9650c39f /extension/react-app/src/components/ComboBox.tsx
parent3bf1432dbf41a0d697b5bd961718f593615ed396 (diff)
parentea8e812a9361a609c1d666bd518112196c6e64b0 (diff)
downloadsncontinue-8cf2962eb6cf29e9b151fbba4954facdfa03ca2e.tar.gz
sncontinue-8cf2962eb6cf29e9b151fbba4954facdfa03ca2e.tar.bz2
sncontinue-8cf2962eb6cf29e9b151fbba4954facdfa03ca2e.zip
Merge branch 'main' into play-button
Diffstat (limited to 'extension/react-app/src/components/ComboBox.tsx')
-rw-r--r--extension/react-app/src/components/ComboBox.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx
index ddc9d5dc..8c1f80e0 100644
--- a/extension/react-app/src/components/ComboBox.tsx
+++ b/extension/react-app/src/components/ComboBox.tsx
@@ -116,6 +116,15 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
disabled={props.disabled}
placeholder="Type '/' to see available slash commands."
{...getInputProps({
+ onChange: (e) => {
+ const target = e.target as HTMLTextAreaElement;
+ // Update the height of the textarea to match the content, up to a max of 200px.
+ target.style.height = "auto";
+ target.style.height = `${Math.min(
+ target.scrollHeight,
+ 200
+ ).toString()}px`;
+ },
onKeyDown: (event) => {
if (event.key === "Enter" && event.shiftKey) {
// Prevent Downshift's default 'Enter' behavior.