Fix validation error position for new rows
This commit is contained in:
parent
913188052a
commit
cb9d35f6aa
|
@ -165,7 +165,6 @@
|
|||
.cell[data-row="0"] .label {
|
||||
bottom: auto;
|
||||
top: 100%;
|
||||
border-radius: 0 2px 2px 2px;
|
||||
padding: 2px 4px 2px 4px;
|
||||
margin: -2px 0 0 0;
|
||||
}
|
||||
|
|
|
@ -167,7 +167,7 @@
|
|||
focused={$focusedCellId === cellId}
|
||||
width={$stickyColumn.width}
|
||||
{updateValue}
|
||||
rowIdx={0}
|
||||
rowIdx={offset === 0 ? 0 : 1}
|
||||
{invertY}
|
||||
>
|
||||
{#if $stickyColumn?.schema?.autocolumn}
|
||||
|
|
Loading…
Reference in New Issue