Skip to content

Commit

Permalink
fix: fix ui issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ning committed Jan 24, 2025
1 parent ed0c21d commit ae306cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/portal/src/pages/chatbot/ChatBot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ const ChatBot: React.FC<ChatBotProps> = (props: ChatBotProps) => {
setModelType(detail.selectedOption);

// Check if the selected model provider matches the chatbot's model provider
const selectedChatbotId = chatbotOption.value;
const selectedChatbotId = chatbotOption.value ?? "defaultId";
const expectedModelProvider = chatbotModelProvider[selectedChatbotId];

if (expectedModelProvider === "Bedrock" &&
Expand Down

0 comments on commit ae306cd

Please sign in to comment.