Procházet zdrojové kódy

fix: remove redundant z-index from Field component (#25034)

tags/1.8.1
17hz před 2 měsíci
rodič
revize
60c5bdd62f
Žádný účet není propojen s e-mailovou adresou tvůrce revize

+ 1
- 1
web/app/components/workflow/nodes/_base/components/field.tsx Zobrazit soubor

@@ -38,7 +38,7 @@ const Field: FC<Props> = ({
<div className={cn(className, inline && 'flex w-full items-center justify-between')}>
<div
onClick={() => supportFold && toggleFold()}
className={cn('sticky top-0 z-10 flex items-center justify-between bg-components-panel-bg', supportFold && 'cursor-pointer')}>
className={cn('sticky top-0 flex items-center justify-between bg-components-panel-bg', supportFold && 'cursor-pointer')}>
<div className='flex h-6 items-center'>
<div className={cn(isSubTitle ? 'system-xs-medium-uppercase text-text-tertiary' : 'system-sm-semibold-uppercase text-text-secondary')}>
{title} {required && <span className='text-text-destructive'>*</span>}

Načítá se…
Zrušit
Uložit