mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 03:47:02 +02:00
Fix test
This commit is contained in:
parent
294ccb6f44
commit
0cb2bf34a5
6 changed files with 28 additions and 13 deletions
|
@ -706,6 +706,12 @@ pub fn apply_settings_to_builder(
|
|||
Setting::Reset => builder.reset_exact_attributes(),
|
||||
Setting::NotSet => (),
|
||||
}
|
||||
|
||||
match value.disable_on_numbers {
|
||||
Setting::Set(val) => builder.set_disable_on_numbers(val),
|
||||
Setting::Reset => builder.reset_disable_on_numbers(),
|
||||
Setting::NotSet => (),
|
||||
}
|
||||
}
|
||||
Setting::Reset => {
|
||||
// all typo settings need to be reset here.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue