mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -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
|
||||
} = Astro.props
|
||||
|
||||
const hasBundleIdentifiers = Array.isArray( listing.bundles )
|
||||
const hasBundleIdentifiers = Array.isArray( listing.bundles ) && listing.bundles.length > 0
|
||||
---
|
||||
{ hasBundleIdentifiers && (
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue