Skip to content

Commit

Permalink
nullsafe commission preset
Browse files Browse the repository at this point in the history
  • Loading branch information
cholladay0816 committed Sep 7, 2023
1 parent 3221d26 commit 2a87c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/commissionpresets/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class="shadow-sm focus:ring-indigo-500 focus:border-indigo-500 block w-full sm:t
<div class="mt-6 grid grid-cols-1 gap-y-6 gap-x-4 sm:grid-cols-2">
<div class="grid grid-cols-1 gap-y-6 gap-x-4 sm:grid-cols-2">
@include('livewire.image-upload', [
'current_url' => $commissionPreset?->image_url(),
'current_url' => isset($commissionPreset) ? $commissionPreset?->image_url() : null,
'title' => 'Cover photo',
'name' => 'image'
])
Expand Down

0 comments on commit 2a87c39

Please sign in to comment.