fix(ui): tooltip positioning issues (#6439)
This commit is contained in:
@@ -54,10 +54,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
&__error-wrap {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
&__row-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -202,11 +202,7 @@ export const _ArrayField: React.FC<ArrayFieldProps> = (props) => {
|
||||
.join(' ')}
|
||||
id={`field-${path.replace(/\./g, '__')}`}
|
||||
>
|
||||
{showError && (
|
||||
<div className={`${baseClass}__error-wrap`}>
|
||||
<FieldError CustomError={CustomError} path={path} {...(errorProps || {})} />
|
||||
</div>
|
||||
)}
|
||||
{showError && <FieldError CustomError={CustomError} path={path} {...(errorProps || {})} />}
|
||||
<header className={`${baseClass}__header`}>
|
||||
<div className={`${baseClass}__header-wrap`}>
|
||||
<div className={`${baseClass}__header-content`}>
|
||||
|
||||
Reference in New Issue
Block a user