mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
feat(ui): add legacy badge to ui and remove database
- we now backup all databases all the time so no need to specify the database anymore
This commit is contained in:
parent
307ea4d8d8
commit
b92aa0a320
1 changed files with 5 additions and 1 deletions
|
|
@ -66,6 +66,11 @@
|
|||
@endphp
|
||||
{{ $statusText }}
|
||||
</span>
|
||||
@if (data_get($execution, 'legacy', false))
|
||||
<span class="px-2 py-1 rounded-md text-xs font-medium bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-200">
|
||||
Legacy
|
||||
</span>
|
||||
@endif
|
||||
</div>
|
||||
<div class="text-gray-600 dark:text-gray-400 text-sm">
|
||||
@if (data_get($execution, 'status') === 'running')
|
||||
|
|
@ -79,7 +84,6 @@
|
|||
• {{ \Carbon\Carbon::parse(data_get($execution, 'finished_at'))->format('M j, H:i') }}
|
||||
</span>
|
||||
@endif
|
||||
• Database: {{ data_get($execution, 'database_name', 'N/A') }}
|
||||
@if(data_get($execution, 'size'))
|
||||
• Size: {{ formatBytes(data_get($execution, 'size')) }}
|
||||
@endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue