Skip to content

Commit 61b2757

Browse files
committed
feat(extension): add data source metadata download data and create merge task
1 parent e9b494c commit 61b2757

6 files changed

Lines changed: 385 additions & 261 deletions

File tree

apps/extension/entrypoints/admin/src/layout/RootLayout.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import {
88
MenuFoldOutlined,
99
MenuUnfoldOutlined,
1010
RobotOutlined,
11-
SettingOutlined,
12-
ShareAltOutlined,
11+
SettingOutlined
1312
} from '@ant-design/icons';
1413
import { Breadcrumb, Button, Flex, Layout, Menu, theme } from 'antd';
1514
import React, { useState } from 'react';
@@ -19,7 +18,6 @@ import logo from '../assets/logo.svg';
1918
import useAnalysisStore from '../store/AnalysisStore';
2019
import useJobSnapshotStore from '../store/JobSnapshotStore';
2120
import HeaderRight from './HeaderRight';
22-
import { Children } from 'react';
2321
const { Header, Sider, Content } = Layout;
2422

2523
const siderStyle: React.CSSProperties = {
@@ -117,7 +115,7 @@ const RootLayout: React.FC = () => {
117115
},
118116
{
119117
key: 'dataSource',
120-
icon: <DatabaseOutlined />,
118+
icon: <div className='i-material-symbols:dataset'></div>,
121119
label: '数据源',
122120
children: [...genDataSharePlanMenu()],
123121
},
@@ -139,7 +137,7 @@ const RootLayout: React.FC = () => {
139137
},
140138
{
141139
key: 'dataManagement',
142-
icon: <SettingOutlined />,
140+
icon: <div className='i-fluent-mdl2:data-management-settings'></div>,
143141
label: '数据管理',
144142
},
145143
{

0 commit comments

Comments
 (0)