Skip to content

Commit

Permalink
Merge pull request #212 from bento-platform/new-manage-icon
Browse files Browse the repository at this point in the history
Added New Chart Manager Drawer
  • Loading branch information
davidlougheed authored Nov 6, 2024
2 parents 04c246a + c9e2aa7 commit bf505e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/components/Overview/PublicOverview.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useCallback, useEffect, useState } from 'react';
import { Card, Col, FloatButton, Row, Skeleton, Typography } from 'antd';
import { PlusOutlined } from '@ant-design/icons';
import { AppstoreAddOutlined } from '@ant-design/icons';

import { convertSequenceAndDisplayData, saveValue } from '@/utils/localStorage';
import type { Sections } from '@/types/data';
Expand Down Expand Up @@ -103,7 +103,7 @@ const PublicOverview = () => {
<ManageChartsDrawer onManageDrawerClose={onManageChartsClose} manageDrawerVisible={drawerVisible} />
<FloatButton
type="primary"
icon={<PlusOutlined />}
icon={<AppstoreAddOutlined rotate={270} />}
tooltip="Manage Charts"
style={MANAGE_CHARTS_BUTTON_STYLE}
onClick={onManageChartsOpen}
Expand Down

0 comments on commit bf505e6

Please sign in to comment.