Skip to content
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 infrastructure/control-panel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@eslint/js": "^9.18.0",
"@storybook/addon-svelte-csf": "^5.0.7",
"@storybook/sveltekit": "^9.0.17",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/adapter-node": "^5.3.3",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/vite": "^4.0.0",
Expand Down
20 changes: 10 additions & 10 deletions infrastructure/control-panel/src/lib/components/EVaultList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -148,27 +148,27 @@
<thead class="bg-gray-50">
<tr>
<th
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
>
Name
</th>
<th
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
>
Namespace
</th>
<th
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
>
Status
</th>
<th
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
>
Age
</th>
<th
class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"
class="px-6 py-3 text-left text-xs font-medium tracking-wider text-gray-500 uppercase"
>
Service URL
</th>
Expand All @@ -178,14 +178,14 @@
{#each evaults as evault}
<tr class="hover:bg-gray-50">
<td
class="whitespace-nowrap px-6 py-4 text-sm font-medium text-gray-900"
class="px-6 py-4 text-sm font-medium whitespace-nowrap text-gray-900"
>
{evault.name}
</td>
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
<td class="px-6 py-4 text-sm whitespace-nowrap text-gray-500">
{evault.namespace}
</td>
<td class="whitespace-nowrap px-6 py-4">
<td class="px-6 py-4 whitespace-nowrap">
<span
class="inline-flex rounded-full px-2 py-1 text-xs font-semibold {evault.status ===
'Running'
Expand All @@ -197,10 +197,10 @@
{evault.status}
</span>
</td>
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
<td class="px-6 py-4 text-sm whitespace-nowrap text-gray-500">
{evault.age || 'Unknown'}
</td>
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
<td class="px-6 py-4 text-sm whitespace-nowrap text-gray-500">
{#if evault.serviceUrl}
<a
href={evault.serviceUrl}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@

<header class="mb-4 flex w-full items-center justify-between px-4">
<div class="flex items-center gap-4">
<p class="text-black-700 whitespace-nowrap font-semibold">{title}</p>
<p class="text-black-700 font-semibold whitespace-nowrap">{title}</p>
<div class="relative w-full">
<input
type="text"
{placeholder}
bind:value={searchValue}
class="bg-black-100 text-black-700 placeholder:text-black-700 w-full rounded-[8px] border border-gray-300 px-4 py-1.5 pr-10 text-xs outline-0"
/>
<span class="text-black-700 absolute right-3 top-1/2 h-4 w-4 -translate-y-1/2">
<span class="text-black-700 absolute top-1/2 right-3 h-4 w-4 -translate-y-1/2">
<HugeiconsIcon
icon={Search01FreeIcons}
size="16px"
Expand Down
Loading
Loading