mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fix rendering empty bundles section
This commit is contained in:
parent
ea52e7051e
commit
29a2579f5f
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ const {
|
||||||
listing
|
listing
|
||||||
} = Astro.props
|
} = Astro.props
|
||||||
|
|
||||||
const hasBundleIdentifiers = Array.isArray( listing.bundles )
|
const hasBundleIdentifiers = Array.isArray( listing.bundles ) && listing.bundles.length > 0
|
||||||
---
|
---
|
||||||
{ hasBundleIdentifiers && (
|
{ hasBundleIdentifiers && (
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue