diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-26 02:22:47 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-26 02:22:47 -0700 |
commit | 1afb37b5bb901d95c493039591b9243cd2cdd6f7 (patch) | |
tree | 2b4d346af5b804b76eff4414df413976e98fd9bb /extension/react-app/src/components/ComboBox.tsx | |
parent | 17d379cc2d29f3971f210dfab80c95d2052723f5 (diff) | |
download | sncontinue-1afb37b5bb901d95c493039591b9243cd2cdd6f7.tar.gz sncontinue-1afb37b5bb901d95c493039591b9243cd2cdd6f7.tar.bz2 sncontinue-1afb37b5bb901d95c493039591b9243cd2cdd6f7.zip |
fix: :bug: access highlighted_code through context_manager
Diffstat (limited to 'extension/react-app/src/components/ComboBox.tsx')
-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 a14e2280..9aab4e93 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -262,7 +262,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { key={`${item.description.id.item_id}${idx}`} item={item} warning={ - item.content.length > 4000 && item.editing + false && item.content.length > 4000 && item.editing ? "Editing such a large range may be slow" : undefined } |