Update potential-market csv (#264)

* Update potential-market csv to match opensource guidance

* missing quantom-conversion-exponent

* fix filter

* alphabetize
This commit is contained in:
Jared Vu
2024-01-31 10:07:21 -08:00
committed by GitHub
parent 8187e3615b
commit 2c220233e3
3 changed files with 781 additions and 775 deletions
+3 -3
View File
@@ -50,11 +50,11 @@ export const ComboboxMenu = <MenuItemValue extends string, MenuGroupValue extend
label={title}
// value={highlightedCommand}
// onValueChange={setHighlightedCommand}
filter={(value: string, search: string) => {
filter={(value: string, search: string) =>
value.replace(/ /g, '').toLowerCase().includes(search.replace(/ /g, '').toLowerCase())
? 1
: 0;
}}
: 0
}
className={className}
$withStickyLayout={withStickyLayout}
>