mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
committed by
Łukasz Mierzwa
parent
d706173902
commit
dc46b88a7d
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## v0.105
|
||||
|
||||
### Changed
|
||||
|
||||
- Change max value of `alertsPerGroup` to 25 #4420.
|
||||
|
||||
## v0.104
|
||||
|
||||
### Added
|
||||
|
||||
@@ -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])}
|
||||
|
||||
@@ -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\\"
|
||||
|
||||
@@ -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\\"
|
||||
|
||||
@@ -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\\"
|
||||
|
||||
Reference in New Issue
Block a user