Добавлен компонент Portal для меню редактирования и удаления уроков в LessonList, что улучшает отображение и взаимодействие с меню.
This commit is contained in:
parent
b070af3188
commit
0861d667b1
@ -29,6 +29,7 @@ import {
|
|||||||
MenuList,
|
MenuList,
|
||||||
MenuItem,
|
MenuItem,
|
||||||
useColorMode,
|
useColorMode,
|
||||||
|
Portal,
|
||||||
} from '@chakra-ui/react'
|
} from '@chakra-ui/react'
|
||||||
import { AddIcon, EditIcon } from '@chakra-ui/icons'
|
import { AddIcon, EditIcon } from '@chakra-ui/icons'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
@ -527,20 +528,22 @@ const LessonList = () => {
|
|||||||
>
|
>
|
||||||
{t('journal.pl.edit')}
|
{t('journal.pl.edit')}
|
||||||
</MenuButton>
|
</MenuButton>
|
||||||
<MenuList>
|
<Portal>
|
||||||
<MenuItem
|
<MenuList zIndex={1000}>
|
||||||
onClick={() => handleEditLesson(lesson)}
|
<MenuItem
|
||||||
icon={<EditIcon />}
|
onClick={() => handleEditLesson(lesson)}
|
||||||
>
|
icon={<EditIcon />}
|
||||||
{t('journal.pl.edit')}
|
>
|
||||||
</MenuItem>
|
{t('journal.pl.edit')}
|
||||||
<MenuItem
|
</MenuItem>
|
||||||
onClick={() => setlessonToDelete(lesson)}
|
<MenuItem
|
||||||
color="red.500"
|
onClick={() => setlessonToDelete(lesson)}
|
||||||
>
|
color="red.500"
|
||||||
{t('journal.pl.delete')}
|
>
|
||||||
</MenuItem>
|
{t('journal.pl.delete')}
|
||||||
</MenuList>
|
</MenuItem>
|
||||||
|
</MenuList>
|
||||||
|
</Portal>
|
||||||
</Menu>
|
</Menu>
|
||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user