mirror of
https://github.com/grocy/grocy.git
synced 2026-03-27 23:29:25 +01:00
Fixed broken HTML markup (fixes #2867)
This commit is contained in:
parent
2a124a3d47
commit
471f21e992
|
|
@ -17,6 +17,7 @@
|
|||
- Fixed that German Umlauts and other special characters were removed from product names when looking up a barcode via the built-in Open Food Facts external barcode lookup plugin
|
||||
- Fixed that when using/scanning a barcode on the purchase page with a note attached (which prefills the note field) and when manually selecting another product afterwards, the note of the previously used barcode was incorrectly prefilled again
|
||||
- Fixed that the "next input focus handling" (jumping to the next input after entering a value) didn't work at some places (e.g. after entering a purchased date on the purchase page)
|
||||
- Fixed that changing the stock setting "Due soon days" wasn't saved/applied
|
||||
|
||||
### Shopping list
|
||||
|
||||
|
|
@ -33,7 +34,7 @@
|
|||
|
||||
### Chores
|
||||
|
||||
- xxx
|
||||
- Fixed that changing the chore setting "Due soon days" wasn't saved/applied
|
||||
|
||||
### Calendar
|
||||
|
||||
|
|
|
|||
|
|
@ -17,14 +17,17 @@
|
|||
|
||||
@include('components.numberpicker', array(
|
||||
'id' => 'batteries_due_soon_days',
|
||||
'additionalAttributes' => 'data-setting-key=" batteries_due_soon_days"', 'label'=> 'Due soon days',
|
||||
'additionalAttributes' => 'data-setting-key="batteries_due_soon_days"',
|
||||
'label'=> 'Due soon days',
|
||||
'min' => 0,
|
||||
'additionalCssClasses' => 'user-setting-control',
|
||||
'hint' => $__t('Set to 0 to hide due soon filters/highlighting')
|
||||
))
|
||||
|
||||
<a href="{{ $U('/batteriesoverview') }}"
|
||||
class="btn btn-success">{{ $__t('OK') }}</a>
|
||||
class="btn btn-success">
|
||||
{{ $__t('OK') }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
||||
|
|
|
|||
|
|
@ -13,11 +13,12 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-8 col-12">
|
||||
<h4 ">{{ $__t('Chores overview') }}</h4>
|
||||
<h4>{{ $__t('Chores overview') }}</h4>
|
||||
|
||||
@include('components.numberpicker', array(
|
||||
'id' => 'chores_due_soon_days',
|
||||
'additionalAttributes' => 'data-setting-key=" chores_due_soon_days"', 'label'=> 'Due soon days',
|
||||
'additionalAttributes' => 'data-setting-key="chores_due_soon_days"',
|
||||
'label'=> 'Due soon days',
|
||||
'min' => 0,
|
||||
'additionalCssClasses' => 'user-setting-control',
|
||||
'hint' => $__t('Set to 0 to hide due soon filters/highlighting')
|
||||
|
|
@ -37,7 +38,9 @@
|
|||
</div>
|
||||
|
||||
<a href="{{ $U('/choresoverview') }}"
|
||||
class="btn btn-success">{{ $__t('OK') }}</a>
|
||||
class="btn btn-success">
|
||||
{{ $__t('OK') }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user