diff --git a/app/Models/Image.php b/app/Models/Image.php index f834b2d4ca..f418784ee9 100644 --- a/app/Models/Image.php +++ b/app/Models/Image.php @@ -126,7 +126,7 @@ public function mentions(): HasMany return $this->hasMany(ImageMention::class, 'image_id', 'id') ->with('entity') ->with('post') - ; + ; } public function inEntities(): array diff --git a/resources/views/characters/organisations/edit.blade.php b/resources/views/characters/organisations/edit.blade.php index 2bfa21c390..ec39b7d71d 100644 --- a/resources/views/characters/organisations/edit.blade.php +++ b/resources/views/characters/organisations/edit.blade.php @@ -13,6 +13,7 @@ @include('partials.forms.form', [ 'title' => __('characters.organisations.edit.title', ['name' => $model->name]), 'content' => 'characters.organisations._form', + 'deleteID' => '#delete-character-organisation-' . $member->id, 'dialog' => true, 'dropdownParent' => '#primary-dialog', ]) @@ -22,6 +23,7 @@ @endif + @endsection