Skip to content

Commit

Permalink
refactor: fix blade formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne-wt authored and github-actions[bot] committed Mar 19, 2024
1 parent add23be commit 0df85d5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resources/views/admin/items/tags/pairing.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<p>Choose a trait that this pairing item will always grant the offspring.</p>
{!! Form::select('feature_id', $features, $tag->getData()['feature_id'] ?? null, [
'class' => 'form-control mr-2
feature-select',
feature-select',
'placeholder' => 'Select Offspring Trait',
]) !!}
</div>
Expand All @@ -45,7 +45,7 @@
<p>Choose a species that this pairing item will grant the offspring.</p>
{!! Form::select('species_id', $specieses, $tag->getData()['species_id'] ?? null, [
'class' => 'form-control mr-2
feature-select',
feature-select',
'placeholder' => 'Select Offspring Species',
]) !!}
</div>
Expand All @@ -55,7 +55,7 @@
<p>Choose a subtype that this pairing item will always grant the offspring. Will not work if the species does not match the subtype.</p>
{!! Form::select('subtype_id', $subtypes, $tag->getData()['subtype_id'] ?? null, [
'class' => 'form-control mr-2
feature-select',
feature-select',
'placeholder' => 'Select Offspring Subtype',
]) !!}
</div>
Expand All @@ -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',
]) !!}
</div>
Expand Down Expand Up @@ -113,7 +113,7 @@
<p>Choose a subtype that should be set if both parent subtypes are excluded.</p>
{!! 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',
]) !!}
</div>
Expand Down

0 comments on commit 0df85d5

Please sign in to comment.