Fix validation error position for new rows

This commit is contained in:
Andrew Kingston 2023-05-16 08:24:23 +01:00
parent 913188052a
commit cb9d35f6aa
2 changed files with 1 additions and 2 deletions

View File

@ -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;
}

View File

@ -167,7 +167,7 @@
focused={$focusedCellId === cellId}
width={$stickyColumn.width}
{updateValue}
rowIdx={0}
rowIdx={offset === 0 ? 0 : 1}
{invertY}
>
{#if $stickyColumn?.schema?.autocolumn}