diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-19 09:59:01 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-19 09:59:01 -0700 |
commit | 31764f5940f34157345f77f7d04265afa603bb5a (patch) | |
tree | 0b4e273c947d19e9648d3147780fa23f5de0dc46 /extension/react-app/src/components | |
parent | 13bb26043186ddf5bb04771c77eea5cc1b565070 (diff) | |
download | sncontinue-31764f5940f34157345f77f7d04265afa603bb5a.tar.gz sncontinue-31764f5940f34157345f77f7d04265afa603bb5a.tar.bz2 sncontinue-31764f5940f34157345f77f7d04265afa603bb5a.zip |
check for codespaces, stream edits
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index 8c1f80e0..1a3a2b90 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -122,7 +122,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { target.style.height = "auto"; target.style.height = `${Math.min( target.scrollHeight, - 200 + 300 ).toString()}px`; }, onKeyDown: (event) => { |