Skip to content

Commit

Permalink
Merge pull request coollabsio#2458 from scflode/scflode-typos
Browse files Browse the repository at this point in the history
Fix some double negation typos
  • Loading branch information
andrasbacsai authored Jun 11, 2024
2 parents 6d9454b + a138bb6 commit d20b3a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/livewire/project/shared/logs.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@forelse (data_get($server,'containers',[]) as $container)
<livewire:project.shared.get-logs :server="$server" :resource="$resource" :container="data_get($container, 'Names')" />
@empty
<div class="pt-2">No containers are not running on server: {{ $server->name }}</div>
<div class="pt-2">No containers are running on server: {{ $server->name }}</div>
@endforelse
</div>
</div>
Expand All @@ -41,7 +41,7 @@
<div> No functional server found for the database.</div>
@endif
@empty
<div class="pt-2">No containers are not running.</div>
<div class="pt-2">No containers are running.</div>
@endforelse
</div>
@elseif ($type === 'service')
Expand All @@ -56,7 +56,7 @@
<div> No functional server found for the service.</div>
@endif
@empty
<div class="pt-2">No containers are not running.</div>
<div class="pt-2">No containers are running.</div>
@endforelse
</div>
@endif
Expand Down

0 comments on commit d20b3a5

Please sign in to comment.