Procházet zdrojové kódy

fix: relative in overflow div (#5998)

AIxGEEK před 9 měsíci
rodič
revize
5e6c3001bd

+ 1 - 1
web/app/components/workflow/nodes/_base/panel.tsx

@@ -107,7 +107,7 @@ const BasePanel: FC<BasePanelProps> = ({
       </div>
       <div
         ref={containerRef}
-        className={cn('relative h-full bg-white shadow-lg border-[0.5px] border-gray-200 rounded-2xl', showSingleRunPanel ? 'overflow-hidden' : 'overflow-y-auto')}
+        className={cn('h-full bg-white shadow-lg border-[0.5px] border-gray-200 rounded-2xl', showSingleRunPanel ? 'overflow-hidden' : 'overflow-y-auto')}
         style={{
           width: `${panelWidth}px`,
         }}