We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e47a59b commit bed7719Copy full SHA for bed7719
airbyte-webapp/src/components/connection/ConnectionForm/SyncCatalogTable/SyncCatalogTable.tsx
@@ -461,6 +461,10 @@ export const SyncCatalogTable: FC<SyncCatalogTableProps> = ({ scrollParentContai
461
})}
462
containerClassName={styles.searchInputContainer}
463
onChange={(e) => setFiltering(e.target.value)}
464
+ onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) => {
465
+ // We do not want to submit the connection form when pressing Enter in the search field
466
+ e.key === "Enter" && e.preventDefault();
467
+ }}
468
/>
469
<FlexContainer>
470
<FlexContainer justifyContent="flex-end" alignItems="center" direction="row" gap="lg">
0 commit comments