diff options
| author | Ty Dunn <ty@tydunn.com> | 2023-06-15 11:36:13 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-15 11:36:13 -0700 | 
| commit | 22e24c457c1f6f088eb853c8d26d982374f4cefb (patch) | |
| tree | dde5a927bf539f3859e0d2f9fa51647845465aa0 /extension/react-app/src/components | |
| parent | 6de892f12959a43c74372f1eba40ec2f53b8c537 (diff) | |
| parent | af3fa07730ef77c50b746b4c9d359024a754a510 (diff) | |
| download | sncontinue-22e24c457c1f6f088eb853c8d26d982374f4cefb.tar.gz sncontinue-22e24c457c1f6f088eb853c8d26d982374f4cefb.tar.bz2 sncontinue-22e24c457c1f6f088eb853c8d26d982374f4cefb.zip | |
Merge pull request #98 from continuedev/slash-commands
adds /edit and /explain commands
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 11d04974..ace0605e 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 instructions or a question. Highlighted code / the open file are used as context." +        placeholder="Type '/' to see the list of available slash commands..."          {...getInputProps({            onKeyDown: (event) => {              if (event.key === "Enter" && (!isOpen || items.length === 0)) { | 
