| | |
| | | return ( |
| | | <Box> |
| | | <Dialog |
| | | sx={{width: '90%'}} |
| | | sx={{width: '100%'}} |
| | | open={open} |
| | | onClose={handleClose} |
| | | fullWidth |
| | |
| | | > |
| | | <DialogTitle> |
| | | {translate('toolbar.selectSite')} |
| | | <DialogCloseButton onClose={() => setOpen(false)} /> |
| | | </DialogTitle> |
| | | <DialogContent> |
| | | <List |
| | |
| | | <BooleanField source="statusBool" label="common.field.status" sortable={false} /> |
| | | <TextField source="memo" label="common.field.memo" sortable={false} /> |
| | | <WrapperField cellClassName="opt" label="common.field.opt"> |
| | | <SelectSiteButton source={source} setOpen={setOpen} refresh={refresh} notify={notify} /> |
| | | <SelectSiteButton source={source} setOpen={setOpen} refresh={refresh} notify={notify} /> |
| | | </WrapperField> |
| | | </StyledDatagrid> |
| | | </List> |
| | | </DialogContent> |
| | | </DialogContent> |
| | | </Dialog> |
| | | </Box> |
| | | ) |