Skip to content

Commit 5e58f4c

Browse files
committed
feat(core): Fix tooltips
1 parent f812831 commit 5e58f4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/frontend/editor-ui/src/features/ai/chatHub/components/ProviderSettingsModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ watch(
226226

227227
<N8nTooltip
228228
:content="i18n.baseText('settings.chatHub.providers.modal.edit.enabled.tooltip')"
229-
:disabled="!props.data.disabled"
229+
:disabled="props.data.disabled"
230230
placement="top"
231231
>
232232
<ElSwitch
@@ -266,7 +266,7 @@ watch(
266266
<div :class="$style.toggle">
267267
<N8nTooltip
268268
:content="i18n.baseText('settings.chatHub.providers.modal.edit.limitModels.tooltip')"
269-
:disabled="!props.data.disabled"
269+
:disabled="props.data.disabled"
270270
placement="top"
271271
>
272272
<ElSwitch

0 commit comments

Comments
 (0)