Skip to content

Commit 5d6e6f3

Browse files
authored
Merge pull request #129 from NotFoundNL/develop
feat: Slider default value
2 parents abcc88f + dc8104c commit 5d6e6f3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"spatie/laravel-package-tools": "^1.14.0",
2020
"spatie/laravel-honeypot": "^4.3.2",
2121
"illuminate/contracts": "^10.0",
22-
"notfoundnl/siteboss-layout": "^1.4.1",
23-
"notfoundnl/siteboss-static": "^1.12",
22+
"notfoundnl/siteboss-layout": "^1.4.3",
23+
"notfoundnl/siteboss-static": "^1.13",
2424
"mcamara/laravel-localization": "^1.8",
2525
"xenolope/quahog": "^3.0",
2626
"firebase/php-jwt": "^6.3",

src/Models/Forms/Property.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ private function makeAutoLayout($options)
108108
$slider = new LayoutInputSlider($option->internal, $option->label);
109109
$slider->setMin(1);
110110
$slider->setMax(12);
111+
$slider->setDefaultValue(12);
111112
$autoLayoutOptions[] = $slider->build();
112113
break;
113114
case 'list':

0 commit comments

Comments
 (0)