Add hasRelatedApps getter

This commit is contained in:
Sam Carlton 2022-05-06 15:32:10 -05:00
parent 6448e414c0
commit a1531fbec5

View file

@ -56,6 +56,10 @@ export class ListingDetails {
return Array.isArray( this.listing.relatedVideos ) && this.listing.relatedVideos.length > 0
}
get hasRelatedApps () {
return false
}
get hasBenchmarksPage () {
return this.hasRelatedVideos
}