Fix missing resize grip for last board row

This commit is contained in:
Mike Cao 2026-02-14 14:22:40 -08:00
parent e52a6b405b
commit 1ef7909dbb

View file

@ -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',