fix: exact search field should not required

This commit is contained in:
Methapon2001 2023-12-14 17:04:52 +07:00
parent 2f8221e894
commit cb789b0ac1
No known key found for this signature in database
GPG key ID: 849924FEF46BD132
3 changed files with 2 additions and 5 deletions

View file

@ -9,5 +9,5 @@ export interface Search {
value: string;
exact?: boolean;
}[];
exact: boolean;
exact?: boolean;
}