mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 23:56:36 +08:00
fix: show up image menu option (#464)
fix: fix bug that don't add image in kanban view
This commit is contained in:
@@ -52,8 +52,6 @@ const CardContainer = styled('div')({
|
||||
backgroundColor: '#fff',
|
||||
border: '1px solid #E2E7ED',
|
||||
borderRadius: '5px',
|
||||
overflow: 'hidden',
|
||||
|
||||
[CardActions.toString()]: {
|
||||
opacity: '0',
|
||||
},
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
import {
|
||||
useRef,
|
||||
ChangeEvent,
|
||||
ReactElement,
|
||||
useState,
|
||||
SyntheticEvent,
|
||||
} from 'react';
|
||||
import DeleteSweepOutlinedIcon from '@mui/icons-material/DeleteSweepOutlined';
|
||||
import {
|
||||
styled,
|
||||
SxProps,
|
||||
MuiTextField as TextField,
|
||||
MuiBox as Box,
|
||||
MuiButton as Button,
|
||||
MuiClickAwayListener as ClickAwayListener,
|
||||
MuiTabs as Tabs,
|
||||
MuiTab as Tab,
|
||||
MuiBox as Box,
|
||||
MuiTabs as Tabs,
|
||||
MuiTextField as TextField,
|
||||
styled,
|
||||
SxProps,
|
||||
} from '@toeverything/components/ui';
|
||||
import {
|
||||
ChangeEvent,
|
||||
ReactElement,
|
||||
SyntheticEvent,
|
||||
useRef,
|
||||
useState,
|
||||
} from 'react';
|
||||
|
||||
const MESSAGES = {
|
||||
ADD_AN_FILE: 'Add an file',
|
||||
@@ -36,8 +36,9 @@ interface Props {
|
||||
}
|
||||
const styles: SxProps = {
|
||||
position: 'absolute',
|
||||
width: '600px',
|
||||
zIndex: 99,
|
||||
width: '70%',
|
||||
// maxWidth:'100%',
|
||||
zIndex: 999,
|
||||
marginLeft: '50px',
|
||||
p: 1,
|
||||
bgcolor: 'background.paper',
|
||||
|
||||
Reference in New Issue
Block a user