fix: better status on ui for apps

This commit is contained in:
Andras Bacsai
2023-06-30 10:49:00 +02:00
parent fed35d9c13
commit 4daa10d38b
13 changed files with 250 additions and 181 deletions

View File

@@ -1,6 +1,6 @@
<x-layout>
<h1>Configuration</h1>
<x-applications.navbar :application="$application" />
<livewire:application.heading :application="$application" />
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }" class="flex h-full pt-6">
<div class="flex flex-col gap-4 min-w-fit">
<a :class="activeTab === 'general' && 'text-white'"

View File

@@ -1,5 +1,5 @@
<x-layout>
<h1 class="py-0">Deployment</h1>
<x-applications.navbar :application="$application" />
<livewire:application.heading :application="$application" />
<livewire:project.application.deployment-logs :activity="$activity" :application="$application" :deployment_uuid="$deployment_uuid" />
</x-layout>

View File

@@ -1,5 +1,5 @@
<x-layout>
<h1>Deployments</h1>
<x-applications.navbar :application="$application" />
<livewire:application.heading :application="$application" />
<livewire:project.application.deployments :application_id="$application->id" />
</x-layout>