style: little style tweaks
This commit is contained in:
@ -101,7 +101,7 @@
|
|||||||
</UFormField>
|
</UFormField>
|
||||||
<div
|
<div
|
||||||
v-if="config.ai.provider === 'openai-compatible'"
|
v-if="config.ai.provider === 'openai-compatible'"
|
||||||
class="space-y-2"
|
class="flex flex-col gap-y-2"
|
||||||
>
|
>
|
||||||
<UFormField :label="$t('settings.ai.apiKey')" required>
|
<UFormField :label="$t('settings.ai.apiKey')" required>
|
||||||
<PasswordInput
|
<PasswordInput
|
||||||
|
@ -191,7 +191,7 @@
|
|||||||
<h3 class="text-lg font-semibold mt-2">
|
<h3 class="text-lg font-semibold mt-2">
|
||||||
{{ t('webBrowsing.researchGoal') }}
|
{{ t('webBrowsing.researchGoal') }}
|
||||||
</h3>
|
</h3>
|
||||||
<p>{{ selectedNode.researchGoal }}</p>
|
<p class="whitespace-pre-wrap">{{ selectedNode.researchGoal }}</p>
|
||||||
|
|
||||||
<h3 class="text-lg font-semibold mt-2">
|
<h3 class="text-lg font-semibold mt-2">
|
||||||
{{ t('webBrowsing.visitedUrls') }}
|
{{ t('webBrowsing.visitedUrls') }}
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
>
|
>
|
||||||
{{ node.label }}
|
{{ node.label }}
|
||||||
</UButton>
|
</UButton>
|
||||||
<ol v-if="node.children.length > 0" class="space-y-2">
|
<ol v-if="node.children.length > 0" class="flex flex-col gap-x-2">
|
||||||
<li v-for="node in node.children" :key="node.id">
|
<li v-for="node in node.children" :key="node.id">
|
||||||
<Tree
|
<Tree
|
||||||
class="ml-2"
|
class="ml-2"
|
||||||
|
Reference in New Issue
Block a user