Skip to content

Commit 6c92506

Browse files
ulixius9claude
andauthored
fix(ui): remove beta tag from stable services and fix Microsoft Fabric icon (#27638)
- Drop OpenLineage, Wherescape, Cassandra, AlationSink, Cockroach, OpenSearch, ThoughtSpot, Ranger, Grafana, and Timescale from BETA_SERVICES — these are stable and should no longer show the Beta badge. - Fix Microsoft Fabric / Microsoft Fabric Pipeline icons: getServiceIcon normalizes keys via toLowerCase(), but the map used camelCase keys (microsoftFabric, microsoftFabricPipeline), so lookup missed and the tiles fell back to the default database icon. Lowercased the keys to match. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 80a525b commit 6c92506

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

openmetadata-ui/src/main/resources/ui/src/constants/ServiceType.constant.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -176,21 +176,11 @@ export const SERVICE_TYPES_ENUM = {
176176
};
177177

178178
export const BETA_SERVICES = [
179-
PipelineServiceType.OpenLineage,
180-
PipelineServiceType.Wherescape,
181-
DatabaseServiceType.Cassandra,
182-
MetadataServiceType.AlationSink,
183-
DatabaseServiceType.Cockroach,
184-
SearchServiceType.OpenSearch,
185179
PipelineServiceType.Ssis,
186180
DatabaseServiceType.Ssas,
187-
DashboardServiceType.ThoughtSpot,
188-
SecurityServiceType.Ranger,
189181
DatabaseServiceType.Epic,
190-
DashboardServiceType.Grafana,
191182
DashboardServiceType.Hex,
192183
DatabaseServiceType.ServiceNow,
193-
DatabaseServiceType.Timescale,
194184
DatabaseServiceType.Dremio,
195185
MetadataServiceType.Collibra,
196186
PipelineServiceType.Mulesoft,

openmetadata-ui/src/main/resources/ui/src/utils/ServiceIconUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const SERVICE_ICON_LOADERS: Record<string, string> = {
178178
iomete: iomete,
179179
domodatabase: domo,
180180
customdatabase: databasedefault,
181-
microsoftFabric: microsoftFabric,
181+
microsoftfabric: microsoftFabric,
182182

183183
// Messaging services
184184
kafka: kafka,
@@ -221,7 +221,7 @@ const SERVICE_ICON_LOADERS: Record<string, string> = {
221221
databrickspipeline: databrick,
222222
gluepipeline: glue,
223223
custompipeline: pipelinedefault,
224-
microsoftFabricPipeline: microsoftFabric,
224+
microsoftfabricpipeline: microsoftFabric,
225225

226226
// ML Model services
227227
mlflow: mlflow,

0 commit comments

Comments
 (0)