diff --git a/js_modules/dagster-ui/packages/ui-core/src/launchpad/ConfigEditorConfigPicker.tsx b/js_modules/dagster-ui/packages/ui-core/src/launchpad/ConfigEditorConfigPicker.tsx index 3f95d51b641ea..58f964cf3c6bd 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/launchpad/ConfigEditorConfigPicker.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/launchpad/ConfigEditorConfigPicker.tsx @@ -304,7 +304,10 @@ const ConfigEditorPartitionPicker = React.memo((props: ConfigEditorPartitionPick items={partitions} inputProps={inputProps} inputValueRenderer={(partition) => partition} - itemPredicate={(query, partition) => query.length === 0 || partition.includes(query)} + itemPredicate={(query, partition) => { + const sanitized = query.trim().toLocaleLowerCase(); + return sanitized.length === 0 || partition.toLocaleLowerCase().includes(sanitized); + }} itemRenderer={(partition, props) => (