feat: Add segmented control for custom and copilot prompts in PromptBody component

This commit is contained in:
n4ze3m
2024-08-04 18:12:09 +05:30
parent 6c44fcfca7
commit 36fc8b6be1
10 changed files with 42 additions and 2 deletions

View File

@@ -306,11 +306,15 @@ export const PromptBody = () => {
size="large"
options={[
{
label: "Custom Prompts",
label: t(
"managePrompts.segmented.custom"
),
value: "custom"
},
{
label: "Copilot Prompts",
label: t(
"managePrompts.segmented.copilot"
),
value: "copilot"
}
]}