diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-06-13 13:06:18 -0700 | 
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-06-13 13:06:18 -0700 | 
| commit | 5761ea1081f75d657b029dcae8532be5327f110c (patch) | |
| tree | 61ed534b79696818904810cc2bce595d46a7e27c /extension/react-app/src/components | |
| parent | c3d98c516cc86afcb2f537b0bef18eaed05f0c3c (diff) | |
| download | sncontinue-5761ea1081f75d657b029dcae8532be5327f110c.tar.gz sncontinue-5761ea1081f75d657b029dcae8532be5327f110c.tar.bz2 sncontinue-5761ea1081f75d657b029dcae8532be5327f110c.zip | |
configurable default model and small updates
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 46d8c4d3..11d04974 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -105,7 +105,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {      <div className="flex px-2" ref={divRef} hidden={!isOpen}>        <MainTextInput          disabled={props.disabled} -        placeholder="Type an instruction or question." +        placeholder="Type instructions or a question. Highlighted code / the open file are used as context."          {...getInputProps({            onKeyDown: (event) => {              if (event.key === "Enter" && (!isOpen || items.length === 0)) { | 
