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

fix(ServiceDetails): items center #798

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/InferenceServerDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ onMount(() => {
{#key service.health?.Status}
<ServiceStatus object="{service}" />
{/key}
<div class="flex flex-col text-xs ml-2">
<div class="flex flex-col text-xs ml-2 items-center justify-center">
<span>{service.container.containerId}</span>
</div>
</div>
Expand All @@ -110,7 +110,7 @@ onMount(() => {
<span class="text-sm">Models</span>
<div class="w-full bg-charcoal-600 rounded-md p-2 flex flex-col gap-y-4">
{#each service.models as model}
<div class="flex flex-row gap-2 items-center">
<div class="flex flex-row gap-2">
axel7083 marked this conversation as resolved.
Show resolved Hide resolved
<div class="grow text-sm">{model.name}</div>
<div>
<div
Expand Down