From 0df85d599c052ffadf1396a81bfda90d19001ee0 Mon Sep 17 00:00:00 2001 From: Ne-wt Date: Tue, 19 Mar 2024 23:27:50 +0000 Subject: [PATCH] refactor: fix blade formatting --- resources/views/admin/items/tags/pairing.blade.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/views/admin/items/tags/pairing.blade.php b/resources/views/admin/items/tags/pairing.blade.php index a26c7e7b23..9f8456dee6 100644 --- a/resources/views/admin/items/tags/pairing.blade.php +++ b/resources/views/admin/items/tags/pairing.blade.php @@ -35,7 +35,7 @@

Choose a trait that this pairing item will always grant the offspring.

{!! Form::select('feature_id', $features, $tag->getData()['feature_id'] ?? null, [ 'class' => 'form-control mr-2 - feature-select', + feature-select', 'placeholder' => 'Select Offspring Trait', ]) !!} @@ -45,7 +45,7 @@

Choose a species that this pairing item will grant the offspring.

{!! Form::select('species_id', $specieses, $tag->getData()['species_id'] ?? null, [ 'class' => 'form-control mr-2 - feature-select', + feature-select', 'placeholder' => 'Select Offspring Species', ]) !!} @@ -55,7 +55,7 @@

Choose a subtype that this pairing item will always grant the offspring. Will not work if the species does not match the subtype.

{!! Form::select('subtype_id', $subtypes, $tag->getData()['subtype_id'] ?? null, [ 'class' => 'form-control mr-2 - feature-select', + feature-select', 'placeholder' => 'Select Offspring Subtype', ]) !!} @@ -72,7 +72,7 @@ {!! Form::label('Default Species (Optional)') !!} {!! add_help('Choose a species that should be set if both parent species are excluded.') !!} {!! Form::select('default_species_id', $specieses, $tag->getData()['default_species_id'] ?? null, [ 'class' => 'form-control mr-2 - feature-select', + feature-select', 'placeholder' => 'Select Default Species', ]) !!} @@ -113,7 +113,7 @@

Choose a subtype that should be set if both parent subtypes are excluded.

{!! Form::select('default_subtype_ids', $subtypes, $tag->getData()['default_subtype_ids'] ?? null, [ 'class' => 'form-control mr-2 - feature-select', + feature-select', 'placeholder' => 'Select Default Subtype', ]) !!}