feat: resource limits

This commit is contained in:
Andras Bacsai
2023-05-17 11:59:48 +02:00
parent 70466bb9b5
commit 3b7456a561
6 changed files with 97 additions and 0 deletions

View File

@@ -21,6 +21,10 @@
<a :class="activeTab === 'revert' && 'text-white'"
@click.prevent="activeTab = 'revert'; window.location.hash = 'revert'" href="#">Revert
</a>
<a :class="activeTab === 'resource-limits' && 'text-white'"
@click.prevent="activeTab = 'resource-limits'; window.location.hash = 'resource-limits'"
href="#">Resource Limits
</a>
{{-- <a :class="activeTab === 'previews' && 'text-white'"
@click.prevent="activeTab = 'previews'; window.location.hash = 'previews'" href="#">Previews
</a> --}}
@@ -44,6 +48,9 @@
<div x-cloak x-show="activeTab === 'revert'">
<livewire:project.application.revert :application="$application" />
</div>
<div x-cloak x-show="activeTab === 'resource-limits'">
<livewire:project.application.resource-limits :application="$application" />
</div>
{{-- <div x-cloak x-show="activeTab === 'previews'">
<livewire:project.application.previews :application="$application" />
</div> --}}