Prevent Negative boosts in Relevance Tuning (#123468)

This commit is contained in:
Scotty Bollinger 2022-01-20 11:25:28 -06:00 committed by GitHub
parent 43569cb685
commit ff51bb7fef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ export const BoostItemContent: React.FC<Props> = ({ boost, index, name }) => {
fullWidth
>
<EuiRange
min={-10}
min={0}
max={10}
step={0.1}
value={boost.factor}