build: 前端构建成功
This commit is contained in:
parent
4318b8392a
commit
54dd21f18b
|
|
@ -36,7 +36,7 @@ export function DropdownSelector<T extends string>({
|
||||||
{selectedOption?.label ?? value}
|
{selectedOption?.label ?? value}
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent className={contentClassName}>
|
<DropdownMenuContent className={contentClassName}>
|
||||||
<DropdownMenuRadioGroup value={value} onValueChange={onChange}>
|
<DropdownMenuRadioGroup value={value} onValueChange={(v) => onChange(v as T)}>
|
||||||
{options.map((option) => (
|
{options.map((option) => (
|
||||||
<DropdownMenuRadioItem key={option.value} value={option.value}>
|
<DropdownMenuRadioItem key={option.value} value={option.value}>
|
||||||
{option.label}
|
{option.label}
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,7 @@ export const enUS: Translations = {
|
||||||
createSkillPrompt:
|
createSkillPrompt:
|
||||||
"We're going to build a new skill step by step with `skill-creator`. To start, what do you want this skill to do?",
|
"We're going to build a new skill step by step with `skill-creator`. To start, what do you want this skill to do?",
|
||||||
addAttachments: "Add attachments",
|
addAttachments: "Add attachments",
|
||||||
|
selectSkill: "Select Skill",
|
||||||
mode: "Mode",
|
mode: "Mode",
|
||||||
flashMode: "Flash",
|
flashMode: "Flash",
|
||||||
flashModeDescription: "Fast and efficient, but may not be accurate",
|
flashModeDescription: "Fast and efficient, but may not be accurate",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue