Add Game Reports and Thomas Credit to listings

This commit is contained in:
Sam Carlton 2022-06-10 17:08:54 -05:00
parent 69ef5575c1
commit bb29e97f06

View file

@ -6,10 +6,12 @@ import {
} from '~/helpers/listing-page.js'
import Aliases from '~/src/components/listing-parts/aliases.astro'
import ThomasCredit from '~/components/thomas-credit.vue'
import RelatedLinks from '~/src/components/listing-parts/related-links.astro'
import Devices from '~/src/components/listing-parts/devices.astro'
import RelatedVideos from '~/src/components/listing-parts/related-videos.astro'
import Bundles from '~/src/components/listing-parts/bundles.astro'
import GameReports from '~/src/components/listing-parts/game-reports.astro'
import LastUpdated from '~/src/components/listing-parts/last-updated.astro'
import AllUpdatesSubscribe from '~/components/all-updates-subscribe.vue'
@ -41,6 +43,10 @@ const details = new ListingDetails( listing )
{ details.subtitle }
</h2>
{ details.isGame && (
<ThomasCredit />
)}
<Aliases listing={ listing } />
<AllUpdatesSubscribe
@ -67,6 +73,10 @@ const details = new ListingDetails( listing )
listing={ listing }
/>
<GameReports
listing={ listing }
/>
<LastUpdated
listing={ listing }
/>