Skip to content

Commit

Permalink
Merge pull request coollabsio#2175 from chz/fix/2174
Browse files Browse the repository at this point in the history
Fix: Resource Operations page: incorrect color for server and project name
  • Loading branch information
andrasbacsai authored May 10, 2024
2 parents d94e1ba + 8920762 commit 55e00e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="pb-4">
<div class="flex flex-col flex-wrap gap-2">
@foreach ($servers->sortBy('id') as $server)
<h5>Server: <span class="font-bold text-white">{{ $server->name }}</span></h5>
<h5>Server: <span class="font-bold text-dark dark:text-white">{{ $server->name }}</span></h5>
@foreach ($server->destinations() as $destination)
<x-modal-confirmation action="cloneTo({{ data_get($destination, 'id') }})">
<x:slot name="content">
Expand All @@ -33,7 +33,7 @@ class="font-bold dark:text-warning">{{ $resource->environment->project->name }}
</div>
<div class="flex flex-col flex-wrap gap-2">
@forelse ($projects as $project)
<h5>Project: <span class="font-bold text-white">{{ $project->name }}</span></h5>
<h5>Project: <span class="font-bold text-dark dark:text-white">{{ $project->name }}</span></h5>

@foreach ($project->environments as $environment)
<x-modal-confirmation action="moveTo({{ data_get($environment, 'id') }})">
Expand Down

0 comments on commit 55e00e3

Please sign in to comment.