mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2025-04-01 13:31:07 +00:00
Fix invisible rows taking up space at bottom of plane
This commit is contained in:
parent
fb44fc8349
commit
bcaff20313
1 changed files with 11 additions and 3 deletions
|
@ -1254,9 +1254,17 @@ export function createPlane(
|
||||||
) : null}
|
) : null}
|
||||||
</StickyVue>
|
</StickyVue>
|
||||||
<SpacerVue height="60px" />
|
<SpacerVue height="60px" />
|
||||||
{features.map((row, i) =>
|
{features
|
||||||
i in displays ? render(displays[i]) : renderRow(...row)
|
.slice(
|
||||||
)}
|
0,
|
||||||
|
features.findIndex(
|
||||||
|
(row, i) =>
|
||||||
|
i > 0 &&
|
||||||
|
i % 2 === 0 &&
|
||||||
|
!(features[i - 1][0] as Treasure).earned.value
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.map((row, i) => (i in displays ? render(displays[i]) : renderRow(...row)))}
|
||||||
{render(modifiersModal)}
|
{render(modifiersModal)}
|
||||||
</>
|
</>
|
||||||
)),
|
)),
|
||||||
|
|
Loading…
Add table
Reference in a new issue