mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 19:48:17 +00:00
Added UI changes for Mode, datalake and Tour fix (#5556)
This commit is contained in:
parent
a3f809d789
commit
4cb370e8a9
@ -118,6 +118,7 @@ const MyAssetStats: FunctionComponent<Props> = ({
|
||||
return (
|
||||
<Card
|
||||
data-testid="data-summary-container"
|
||||
id="assetStatsCount"
|
||||
style={{
|
||||
border: '1px rgb(221, 227, 234) solid',
|
||||
borderRadius: '8px',
|
||||
|
||||
@ -19,6 +19,7 @@ import {
|
||||
} from '../generated/entity/services/dashboardService';
|
||||
import lookerConnection from '../jsons/connectionSchemas/connections/dashboard/lookerConnection.json';
|
||||
import metabaseConnection from '../jsons/connectionSchemas/connections/dashboard/metabaseConnection.json';
|
||||
import modeConnection from '../jsons/connectionSchemas/connections/dashboard/modeConnection.json';
|
||||
import powerBIConnection from '../jsons/connectionSchemas/connections/dashboard/powerBIConnection.json';
|
||||
import redashConnection from '../jsons/connectionSchemas/connections/dashboard/redashConnection.json';
|
||||
import supersetConnection from '../jsons/connectionSchemas/connections/dashboard/supersetConnection.json';
|
||||
@ -44,6 +45,11 @@ export const getDashboardConfig = (type: DashboardServiceType) => {
|
||||
|
||||
break;
|
||||
}
|
||||
case DashboardServiceType.Mode: {
|
||||
schema = modeConnection;
|
||||
|
||||
break;
|
||||
}
|
||||
case DashboardServiceType.PowerBI: {
|
||||
schema = powerBIConnection;
|
||||
|
||||
|
||||
@ -19,6 +19,7 @@ import azureSQLConnection from '../jsons/connectionSchemas/connections/database/
|
||||
import bigQueryConnection from '../jsons/connectionSchemas/connections/database/bigQueryConnection.json';
|
||||
import clickhouseConnection from '../jsons/connectionSchemas/connections/database/clickhouseConnection.json';
|
||||
import databricksConnection from '../jsons/connectionSchemas/connections/database/databricksConnection.json';
|
||||
import DatalakeConnection from '../jsons/connectionSchemas/connections/database/datalakeConnection.json';
|
||||
import db2Connection from '../jsons/connectionSchemas/connections/database/db2Connection.json';
|
||||
import deltaLakeConnection from '../jsons/connectionSchemas/connections/database/deltaLakeConnection.json';
|
||||
import druidConnection from '../jsons/connectionSchemas/connections/database/druidConnection.json';
|
||||
@ -69,6 +70,11 @@ export const getDatabaseConfig = (type: DatabaseServiceType) => {
|
||||
|
||||
break;
|
||||
}
|
||||
case DatabaseServiceType.Datalake: {
|
||||
schema = DatalakeConnection;
|
||||
|
||||
break;
|
||||
}
|
||||
case DatabaseServiceType.Db2: {
|
||||
schema = db2Connection;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user