mirror of
https://github.com/langgenius/dify.git
synced 2026-04-29 12:37:20 +08:00
fix: prevent X button flying to screen corners in dataset settings modal (#23788)
This commit is contained in:
parent
66232792a2
commit
d3eff9b1a3
@ -69,9 +69,11 @@ const RenameDatasetModal = ({ show, dataset, onSuccess, onClose }: RenameDataset
|
|||||||
isShow={show}
|
isShow={show}
|
||||||
onClose={noop}
|
onClose={noop}
|
||||||
>
|
>
|
||||||
<div className='relative pb-2 text-xl font-medium leading-[30px] text-text-primary'>{t('datasetSettings.title')}</div>
|
<div className='flex items-center justify-between pb-2'>
|
||||||
<div className='absolute right-4 top-4 cursor-pointer p-2' onClick={onClose}>
|
<div className='text-xl font-medium leading-[30px] text-text-primary'>{t('datasetSettings.title')}</div>
|
||||||
<RiCloseLine className='h-4 w-4 text-text-tertiary' />
|
<div className='cursor-pointer p-2' onClick={onClose}>
|
||||||
|
<RiCloseLine className='h-4 w-4 text-text-tertiary' />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className={cn('flex flex-wrap items-center justify-between py-4')}>
|
<div className={cn('flex flex-wrap items-center justify-between py-4')}>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user