mirror of
https://github.com/grocy/grocy.git
synced 2026-04-06 21:06: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
|
||||
|
||||
<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-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>
|
||||
<select class="form-control location-combobox"
|
||||
id="location_id"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user