mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Prevent Negative boosts in Relevance Tuning (#123468)
This commit is contained in:
parent
43569cb685
commit
ff51bb7fef
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue