mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 17:21:04 +00:00
fix: correct event class names in callEventOnFinish
- Remove App\\Events\\ prefix from event class names - RunRemoteProcess already prepends App\\Events\\ to the class name - Use 'S3DownloadFinished' instead of 'App\\Events\\S3DownloadFinished' - Use 'S3RestoreJobFinished' instead of 'App\\Events\\S3RestoreJobFinished' - Fixes "Class 'App\Events\App\Events\S3DownloadFinished' not found" error 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -78,10 +78,22 @@
|
||||
</div>
|
||||
@if(isDev())
|
||||
<div class="flex gap-2 md:flex-row flex-col w-full">
|
||||
<x-forms.input id="dev_helper_version" label="Dev Helper Version (Development Only)"
|
||||
helper="Override the default coolify-helper image version. Leave empty to use the default version from config ({{ config('constants.coolify.helper_version') }}). Examples: 1.0.11, latest, dev"
|
||||
placeholder="{{ config('constants.coolify.helper_version') }}" />
|
||||
<div class="flex-1">
|
||||
<x-forms.input id="dev_helper_version" label="Dev Helper Version (Development Only)"
|
||||
helper="Override the default coolify-helper image version. Leave empty to use the default version from config ({{ config('constants.coolify.helper_version') }}). Examples: 1.0.11, latest, dev"
|
||||
placeholder="{{ config('constants.coolify.helper_version') }}" />
|
||||
</div>
|
||||
<div class="flex items-end">
|
||||
<x-forms.button wire:click="buildHelperImage" type="button">
|
||||
Build Image
|
||||
</x-forms.button>
|
||||
</div>
|
||||
</div>
|
||||
@if($buildActivityId)
|
||||
<div class="w-full mt-4">
|
||||
<livewire:activity-monitor header="Building Helper Image" :activityId="$buildActivityId" :fullHeight="false" />
|
||||
</div>
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user