fix(ui): bump max to 25

Fixes #4420.
This commit is contained in:
Łukasz Mierzwa
2022-07-02 16:02:55 +01:00
committed by Łukasz Mierzwa
parent d706173902
commit dc46b88a7d
5 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## v0.105
### Changed
- Change max value of `alertsPerGroup` to 25 #4420.
## v0.104
### Added

View File

@@ -20,7 +20,7 @@ const AlertGroupConfiguration: FC<{
<Range
step={1}
min={1}
max={10}
max={25}
values={defaultRenderCount}
onChange={(values) => setDefaultRenderCount(values)}
onFinalChange={(values) => onChangeComplete(values[0])}

View File

@@ -11,7 +11,7 @@ exports[`<AlertGroupConfiguration /> matches snapshot with default values 1`] =
class=\\"input-range-thumb\\"
style=\\"position: absolute; z-index: 0; cursor: grab; user-select: none; transform: translate(NaNpx, NaNpx);\\"
tabindex=\\"0\\"
aria-valuemax=\\"10\\"
aria-valuemax=\\"25\\"
aria-valuemin=\\"1\\"
aria-valuenow=\\"5\\"
draggable=\\"false\\"

View File

@@ -232,7 +232,7 @@ exports[`<Configuration /> matches snapshot 1`] = `
class=\\"input-range-thumb\\"
style=\\"position: absolute; z-index: 0; cursor: grab; user-select: none; transform: translate(NaNpx, NaNpx);\\"
tabindex=\\"0\\"
aria-valuemax=\\"10\\"
aria-valuemax=\\"25\\"
aria-valuemin=\\"1\\"
aria-valuenow=\\"5\\"
draggable=\\"false\\"

View File

@@ -249,7 +249,7 @@ exports[`<MainModalContent /> matches snapshot 1`] = `
class=\\"input-range-thumb\\"
style=\\"position: absolute; z-index: 0; cursor: grab; user-select: none; transform: translate(NaNpx, NaNpx);\\"
tabindex=\\"0\\"
aria-valuemax=\\"10\\"
aria-valuemax=\\"25\\"
aria-valuemin=\\"1\\"
aria-valuenow=\\"5\\"
draggable=\\"false\\"