diff --git a/changelog/81_UNRELEASED_xxxx-xx-xx.md b/changelog/81_UNRELEASED_xxxx-xx-xx.md index 739d2aed..c23e8fff 100644 --- a/changelog/81_UNRELEASED_xxxx-xx-xx.md +++ b/changelog/81_UNRELEASED_xxxx-xx-xx.md @@ -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 diff --git a/views/batteriessettings.blade.php b/views/batteriessettings.blade.php index cf254f4a..2e98a7d4 100644 --- a/views/batteriessettings.blade.php +++ b/views/batteriessettings.blade.php @@ -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') )) {{ $__t('OK') }} + class="btn btn-success"> + {{ $__t('OK') }} + @stop diff --git a/views/choressettings.blade.php b/views/choressettings.blade.php index 872d8628..caf23621 100644 --- a/views/choressettings.blade.php +++ b/views/choressettings.blade.php @@ -13,31 +13,34 @@