Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/app/src/components/settings-v2/skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const SettingsSkillsV2: Component = () => {
description={provider.path ?? provider.url ?? ""}
>
<ButtonV2
size="xs"
size="small"
variant="ghost"
onClick={() => ctrl.removeProvider(provider.id)}
aria-label={`Remove ${provider.id}`}
Expand All @@ -117,11 +117,11 @@ export const SettingsSkillsV2: Component = () => {
</SettingsListV2>

<div style="display:flex;gap:8px;margin-top:12px;">
<ButtonV2 size="sm" variant="secondary" onClick={() => ctrl.addDirectory()}>
<ButtonV2 size="small" variant="neutral" onClick={() => ctrl.addDirectory()}>
<Icon name="plus" />
{language.t("settings.skills.action.add_directory")}
</ButtonV2>
<ButtonV2 size="sm" variant="secondary" onClick={() => ctrl.autodiscover()}>
<ButtonV2 size="small" variant="neutral" onClick={() => ctrl.autodiscover()}>
<Icon name="magnifying-glass" />
Autodiscover
</ButtonV2>
Expand All @@ -139,8 +139,8 @@ export const SettingsSkillsV2: Component = () => {
description={item.path}
>
<ButtonV2
size="xs"
variant="secondary"
size="small"
variant="neutral"
onClick={() =>
ctrl.addProvider({
id: item.name,
Expand Down
Loading