mirror of
https://github.com/grocy/grocy.git
synced 2026-04-07 05:16:15 +02:00
Fix undefined variables in locationpicker.blade.php
This commit is contained in:
parent
dec0a6e9ea
commit
e0f8dee1c2
|
|
@ -8,10 +8,10 @@
|
||||||
@php if(empty($hint)) { $hint = ''; } @endphp
|
@php if(empty($hint)) { $hint = ''; } @endphp
|
||||||
|
|
||||||
<div class="form-group"
|
<div class="form-group"
|
||||||
data-next-input-selector="{{ $nextInputSelector }}"
|
@if(isset($nextInputSelector))data-next-input-selector="{{ $nextInputSelector }}" @endif
|
||||||
data-prefill-by-name="{{ $prefillByName }}"
|
data-prefill-by-name="{{ $prefillByName }}"
|
||||||
data-prefill-by-id="{{ $prefillById }}">
|
data-prefill-by-id="{{ $prefillById }}">
|
||||||
<label for="location_id">{{ $__t('Location') }} <span id="{{ $hintId }}"
|
<label for="location_id">{{ $__t('Location') }} <span @if(!empty($hintId))id="{{ $hintId }}" @endif
|
||||||
class="small text-muted">{{ $hint }}</span></label>
|
class="small text-muted">{{ $hint }}</span></label>
|
||||||
<select class="form-control location-combobox"
|
<select class="form-control location-combobox"
|
||||||
id="location_id"
|
id="location_id"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user