From a4a4d68959bc1658af9bbc5b8fbdf2dff320e1ab Mon Sep 17 00:00:00 2001 From: Jonah Eisen Date: Tue, 28 Nov 2023 11:38:48 -0800 Subject: [PATCH] Update DefineSchema component based on new Kafka schema See: fc2c32fa --- arroyo-console/src/routes/connections/DefineSchema.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arroyo-console/src/routes/connections/DefineSchema.tsx b/arroyo-console/src/routes/connections/DefineSchema.tsx index edd0c95d4..7661b5331 100644 --- a/arroyo-console/src/routes/connections/DefineSchema.tsx +++ b/arroyo-console/src/routes/connections/DefineSchema.tsx @@ -55,7 +55,7 @@ const SchemaFormatEditor = ({ if ( connector.id == 'kafka' && connectionProfile != null && - (connectionProfile.config as any).schemaRegistry != null + (connectionProfile.config as any).schemaRegistryEnum?.endpoint != null ) { schemaTypeOptions.push({ name: 'Confluent Schema Registry', value: 'confluent' }); }