Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refine styles and fix agent action issue #328

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/lib/scss/custom/pages/_knowledgebase.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
padding: 0px;

i::before {
font-size: 1.2em;
font-size: 1em;
font-weight: 700;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/page/agent/[agentId]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
</Col>
</Row>

{#if !!AgentExtensions.editable(agent)}
{#if !!AgentExtensions.editable(originalAgent)}
<Row>
<div class="hstack gap-2 my-4">
<Button class="btn btn-soft-primary" on:click={() => updateCurrentAgent()}>{$_('Save Agent')}</Button>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/page/knowledge-base/documents/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@
<div class="line-align-center input-text fw-bold">
<span>{'Confidence:'}</span>
</div>
<div style="display: flex;">
<div style="display: flex; gap: 5px;">
<div class="line-align-center confidence-box">
<Input
type="text"
Expand Down Expand Up @@ -892,7 +892,7 @@
<LoadingDots duration={'1s'} size={12} gap={5} color={'var(--bs-primary)'} />
</div>
{:else if searchDone && (!items || items.length === 0)}
<div class="mt-5">
<div class="mt-5 text-center">
<h4 class="text-secondary">{"Ehhh, no idea..."}</h4>
</div>
{/if}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/page/knowledge-base/question-answer/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@
<div class="line-align-center input-text fw-bold">
<span>{'Confidence:'}</span>
</div>
<div style="display: flex;">
<div style="display: flex; gap: 5px;">
<div class="line-align-center confidence-box">
<Input
type="text"
Expand Down Expand Up @@ -802,7 +802,7 @@
<LoadingDots duration={'1s'} size={12} gap={5} color={'var(--bs-primary)'} />
</div>
{:else if searchDone && (!items || items.length === 0)}
<div class="mt-5">
<div class="mt-5 text-center">
<h4 class="text-secondary">{"Ehhh, no idea..."}</h4>
</div>
{/if}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/page/knowledge-base/relationships/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
</div>
</div>
{:else if searchDone && !result}
<div class="mt-3">
<div class="mt-3 text-center">
<h4 class="text-secondary">{"Ehhh, no idea..."}</h4>
</div>
{/if}
Expand Down