fix: Fix directory and file mount headings in file-storage.blade.php
This commit is contained in:
@@ -196,7 +196,7 @@ class General extends Component
|
|||||||
|
|
||||||
// Must reload the application to get the latest database changes
|
// Must reload the application to get the latest database changes
|
||||||
// Why? Not sure, but it works.
|
// Why? Not sure, but it works.
|
||||||
$this->application->refresh();
|
// $this->application->refresh();
|
||||||
|
|
||||||
['parsedServices' => $this->parsedServices, 'initialDockerComposeLocation' => $this->initialDockerComposeLocation] = $this->application->loadComposeFile($isInit);
|
['parsedServices' => $this->parsedServices, 'initialDockerComposeLocation' => $this->initialDockerComposeLocation] = $this->application->loadComposeFile($isInit);
|
||||||
if (is_null($this->parsedServices)) {
|
if (is_null($this->parsedServices)) {
|
||||||
|
@@ -3526,6 +3526,9 @@ function newParser(Application|Service $resource, int $pull_request_id = 0, ?int
|
|||||||
'networks' => $networks_temp,
|
'networks' => $networks_temp,
|
||||||
'labels' => $serviceLabels,
|
'labels' => $serviceLabels,
|
||||||
]);
|
]);
|
||||||
|
if ($ports->count() > 0) {
|
||||||
|
$payload['ports'] = $ports;
|
||||||
|
}
|
||||||
if ($volumesParsed->count() > 0) {
|
if ($volumesParsed->count() > 0) {
|
||||||
$payload['volumes'] = $volumesParsed;
|
$payload['volumes'] = $volumesParsed;
|
||||||
}
|
}
|
||||||
@@ -3544,6 +3547,7 @@ function newParser(Application|Service $resource, int $pull_request_id = 0, ?int
|
|||||||
|
|
||||||
$parsedServices->put($serviceName, $payload);
|
$parsedServices->put($serviceName, $payload);
|
||||||
}
|
}
|
||||||
|
ray($parsedServices);
|
||||||
$topLevel->put('services', $parsedServices);
|
$topLevel->put('services', $parsedServices);
|
||||||
$customOrder = ['services', 'volumes', 'networks', 'configs', 'secrets'];
|
$customOrder = ['services', 'volumes', 'networks', 'configs', 'secrets'];
|
||||||
|
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
<h4>{{ data_get($resource, 'name', 'unknown') }}</h4>
|
<h4>{{ data_get($resource, 'name', 'unknown') }}</h4>
|
||||||
@endif --}}
|
@endif --}}
|
||||||
@if ($fileStorage->is_directory)
|
@if ($fileStorage->is_directory)
|
||||||
<h4 class="dark:text-white">Directory Mount</h4>
|
<h4 class="dark:text-white pt-4 border-t dark:border-coolgray-200">Directory Mount</h4>
|
||||||
@else
|
@else
|
||||||
<h4 class="dark:text-white">File Mount</h4>
|
<h4 class="dark:text-white pt-4 border-t dark:border-coolgray-200">File Mount</h4>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<x-forms.input label="Source Path" :value="$fileStorage->fs_path" readonly />
|
<x-forms.input label="Source Path" :value="$fileStorage->fs_path" readonly />
|
||||||
|
@@ -35,8 +35,6 @@
|
|||||||
<livewire:project.shared.storages.all :resource="$resource" />
|
<livewire:project.shared.storages.all :resource="$resource" />
|
||||||
@endif
|
@endif
|
||||||
@if ($fileStorage->count() > 0)
|
@if ($fileStorage->count() > 0)
|
||||||
|
|
||||||
<h3 class="mt-4 pt-2 border-t dark:border-coolgray-200">Mounts</h3>
|
|
||||||
<div class="flex flex-col gap-2">
|
<div class="flex flex-col gap-2">
|
||||||
@foreach ($fileStorage->sort() as $fileStorage)
|
@foreach ($fileStorage->sort() as $fileStorage)
|
||||||
<livewire:project.service.file-storage :fileStorage="$fileStorage"
|
<livewire:project.service.file-storage :fileStorage="$fileStorage"
|
||||||
|
Reference in New Issue
Block a user