diff --git a/resources/css/utilities.css b/resources/css/utilities.css index 9851180c2b..67d898da3a 100644 --- a/resources/css/utilities.css +++ b/resources/css/utilities.css @@ -59,7 +59,7 @@ /* input, select before */ @utility input-select { - @apply block h-9 px-3 py-1.5 w-full text-sm text-black rounded-md border border-neutral-200 bg-[var(--coollabs-recessed)] dark:text-fg dark:border-white/[0.08] transition-colors disabled:bg-neutral-100 disabled:text-neutral-400 dark:disabled:bg-white/[0.03] dark:disabled:text-fg-faint; + @apply block h-8 px-3 py-1.5 w-full text-sm text-black rounded-md border border-neutral-200 bg-[var(--coollabs-recessed)] dark:text-fg dark:border-white/[0.08] transition-colors disabled:bg-neutral-100 disabled:text-neutral-400 dark:disabled:bg-white/[0.03] dark:disabled:text-fg-faint; box-shadow: none; &:where(.dark, .dark *) { diff --git a/resources/views/livewire/dashboard.blade.php b/resources/views/livewire/dashboard.blade.php index f4bf96fbb7..d9eb201c5d 100644 --- a/resources/views/livewire/dashboard.blade.php +++ b/resources/views/livewire/dashboard.blade.php @@ -66,7 +66,7 @@ {{ $project->name }}
- {{ $project->description ?: 'No description' }} + {{ $project->description }}
@@ -181,7 +181,7 @@ {{ $server->name }}- {{ $server->description ?: 'No description' }} + {{ $server->description }}
@if ($serverStatusType !== 'success') diff --git a/resources/views/livewire/project/index.blade.php b/resources/views/livewire/project/index.blade.php index 4cd0e22d19..108b4024ac 100644 --- a/resources/views/livewire/project/index.blade.php +++ b/resources/views/livewire/project/index.blade.php @@ -121,7 +121,7 @@ class="truncate text-[13px]! leading-4! font-semibold! text-black dark:text-fg" x-text="project.name"> + x-text="project.description || ''"> diff --git a/resources/views/livewire/server/index.blade.php b/resources/views/livewire/server/index.blade.php index 9f5680160e..52a0c3a990 100644 --- a/resources/views/livewire/server/index.blade.php +++ b/resources/views/livewire/server/index.blade.php @@ -55,7 +55,7 @@ return [ 'uuid' => $server->uuid, 'name' => $server->name, - 'description' => $server->description ?: 'No description', + 'description' => $server->description, 'href' => route('server.show', ['server_uuid' => $server->uuid]), 'status' => $status, 'statusType' => $statusType, diff --git a/resources/views/livewire/server/private-key/show.blade.php b/resources/views/livewire/server/private-key/show.blade.php index bf938a888d..0663dd1168 100644 --- a/resources/views/livewire/server/private-key/show.blade.php +++ b/resources/views/livewire/server/private-key/show.blade.php @@ -78,7 +78,7 @@ @endif- {{ $privateKey->description ?: 'No description provided.' }} + {{ $privateKey->description }}
diff --git a/resources/views/livewire/shared-variables/environment/index.blade.php b/resources/views/livewire/shared-variables/environment/index.blade.php index 15c6dd461d..645f2e61be 100644 --- a/resources/views/livewire/shared-variables/environment/index.blade.php +++ b/resources/views/livewire/shared-variables/environment/index.blade.php @@ -33,7 +33,7 @@ href="{{ route('shared-variables.environment.show', ['project_uuid' => $project->uuid, 'environment_uuid' => $environment->uuid]) }}" {{ wireNavigate() }}>{{ $environment->description ?: 'No description' }}
{{ $environment->description }}
{{ $project->description ?: 'No description' }}
+{{ $project->description }}