mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 19:45:35 +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}
|
||||
/>
|
||||
</Panel>
|
||||
{index < rows.length - 1 && (
|
||||
{(index < rows.length - 1 || canEdit) && (
|
||||
<Separator
|
||||
style={{
|
||||
height: '12px',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue