mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-04 11:14:10 +08:00
fix: fix wrong layer adding customized tools (#17937)
This commit is contained in:
parent
bc57fa0619
commit
cf8d15e8d5
0
web/.husky/pre-commit
Executable file → Normal file
0
web/.husky/pre-commit
Executable file → Normal file
@ -44,17 +44,17 @@ export default function Drawer({
|
|||||||
unmount={unmount}
|
unmount={unmount}
|
||||||
open={isOpen}
|
open={isOpen}
|
||||||
onClose={() => !clickOutsideNotOpen && onClose()}
|
onClose={() => !clickOutsideNotOpen && onClose()}
|
||||||
className="fixed inset-0 z-30 overflow-y-auto"
|
className="fixed inset-0 z-[80] overflow-y-auto"
|
||||||
>
|
>
|
||||||
<div className={cn('flex h-screen w-screen justify-end', positionCenter && '!justify-center')}>
|
<div className={cn('flex h-screen w-screen justify-end', positionCenter && '!justify-center')}>
|
||||||
{/* mask */}
|
{/* mask */}
|
||||||
<DialogBackdrop
|
<DialogBackdrop
|
||||||
className={cn('fixed inset-0 z-40', mask && 'bg-black bg-opacity-30')}
|
className={cn('fixed inset-0 z-[90]', mask && 'bg-black bg-opacity-30')}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
!clickOutsideNotOpen && onClose()
|
!clickOutsideNotOpen && onClose()
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<div className={cn('relative z-50 flex w-full max-w-sm flex-col justify-between overflow-hidden bg-components-panel-bg p-6 text-left align-middle shadow-xl', panelClassname)}>
|
<div className={cn('relative z-[100] flex w-full max-w-sm flex-col justify-between overflow-hidden bg-components-panel-bg p-6 text-left align-middle shadow-xl', panelClassname)}>
|
||||||
<>
|
<>
|
||||||
<div className='flex justify-between'>
|
<div className='flex justify-between'>
|
||||||
{title && <DialogTitle
|
{title && <DialogTitle
|
||||||
|
Loading…
x
Reference in New Issue
Block a user