diff --git a/apps/web/src/components/features/input/BusterChatInput/BusterChatInputBase.tsx b/apps/web/src/components/features/input/BusterChatInput/BusterChatInputBase.tsx index 1e3ceed1c..a900141ff 100644 --- a/apps/web/src/components/features/input/BusterChatInput/BusterChatInputBase.tsx +++ b/apps/web/src/components/features/input/BusterChatInput/BusterChatInputBase.tsx @@ -125,6 +125,7 @@ export const BusterChatInputBase: React.FC = React.memo( onPressEnter={onSubmitPreflight} mentions={mentions} suggestionItems={suggestionItems} + disabled={disabled} placeholder="Ask a question or type ‘/’ for shortcuts..." ref={mentionInputSuggestionsRef} inputContainerClassName="px-5 pt-4" diff --git a/apps/web/src/components/ui/inputs/MentionInputSuggestions/MentionInputSuggestionsMentionsInput.tsx b/apps/web/src/components/ui/inputs/MentionInputSuggestions/MentionInputSuggestionsMentionsInput.tsx index 7e010d66b..5208d6e2c 100644 --- a/apps/web/src/components/ui/inputs/MentionInputSuggestions/MentionInputSuggestionsMentionsInput.tsx +++ b/apps/web/src/components/ui/inputs/MentionInputSuggestions/MentionInputSuggestionsMentionsInput.tsx @@ -22,12 +22,14 @@ export const MentionInputSuggestionsMentionsInput = forwardRef< MentionInputSuggestionsMentionsInputProps >(({ mentions, ...props }, ref) => { const { value } = props; + return (