mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 03:25:40 +01:00
Fix missing resize grip for last board row
This commit is contained in:
parent
e52a6b405b
commit
1ef7909dbb
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ export function BoardEditBody({ requiresBoardWebsite = true }: { requiresBoardWe
|
||||||
onRegisterRef={registerColumnGroupRef}
|
onRegisterRef={registerColumnGroupRef}
|
||||||
/>
|
/>
|
||||||
</Panel>
|
</Panel>
|
||||||
{index < rows.length - 1 && (
|
{(index < rows.length - 1 || canEdit) && (
|
||||||
<Separator
|
<Separator
|
||||||
style={{
|
style={{
|
||||||
height: '12px',
|
height: '12px',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue