admin widget zu dokploy geswitched, viele übersetzungen im Frontend vervollständigt und Anlässe-Seiten mit ChatGPT ausgebaut

This commit is contained in:
Codex Agent
2025-11-19 13:12:35 +01:00
parent 125c624588
commit d8f365ddd6
30 changed files with 2820 additions and 293 deletions

View File

@@ -34,16 +34,17 @@ class InfrastructureActionLogResource extends Resource
->sortable()
->searchable(),
Tables\Columns\TextColumn::make('service_id')
->label('Service')
->label('Target')
->searchable()
->copyable()
->limit(30),
Tables\Columns\BadgeColumn::make('action')
->label('Action')
->colors([
'warning' => 'restart',
'info' => 'redeploy',
'gray' => 'logs',
'warning' => fn ($state) => in_array($state, ['compose.redeploy', 'redeploy'], true),
'success' => fn ($state) => in_array($state, ['compose.deploy', 'deploy'], true),
'danger' => fn ($state) => in_array($state, ['compose.stop', 'stop'], true),
'gray' => fn ($state) => $state === 'logs',
])
->sortable(),
Tables\Columns\TextColumn::make('status_code')