fix(ui): add missing save button for new Docker Cleanup page

This commit is contained in:
peaklabs-dev
2025-01-21 17:03:58 +01:00
parent a230a42599
commit 2844c6ce36

View File

@@ -6,9 +6,11 @@
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }" class="flex flex-col h-full gap-8 sm:flex-row"> <div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }" class="flex flex-col h-full gap-8 sm:flex-row">
<x-server.sidebar :server="$server" activeMenu="docker-cleanup" /> <x-server.sidebar :server="$server" activeMenu="docker-cleanup" />
<div class="w-full"> <div class="w-full">
<form wire:submit='submit'>
<div> <div>
<div class="flex items-center gap-2"> <div class="flex items-center gap-2">
<h2>Docker Cleanup</h2> <h2>Docker Cleanup</h2>
<x-forms.button type="submit">Save</x-forms.button>
</div> </div>
<div class="mt-3 mb-4">Configure Docker cleanup settings for your server.</div> <div class="mt-3 mb-4">Configure Docker cleanup settings for your server.</div>
</div> </div>
@@ -72,6 +74,7 @@
</ul>" /> </ul>" />
</div> </div>
</div> </div>
</form>
<div class="mt-8"> <div class="mt-8">
<h3 class="mb-4">Recent executions <span class="text-xs text-neutral-500">(click to check output)</span></h3> <h3 class="mb-4">Recent executions <span class="text-xs text-neutral-500">(click to check output)</span></h3>