mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Try loading AdInline in search list by default
This commit is contained in:
parent
c19f8e9ca1
commit
75199e2183
1 changed files with 10 additions and 4 deletions
|
|
@ -45,7 +45,12 @@
|
|||
</div>
|
||||
|
||||
<div class="slot-wrapper">
|
||||
<slot />
|
||||
<slot name="ad-inline">
|
||||
<AdInline
|
||||
v-if="isSSR === false"
|
||||
v-once
|
||||
/>
|
||||
</slot>
|
||||
</div>
|
||||
|
||||
<div
|
||||
|
|
@ -329,7 +334,7 @@ import {
|
|||
makeHighlightedResultTitle
|
||||
} from '~/helpers/stork/browser.js'
|
||||
|
||||
import Carbon from '~/components/carbon-inline.vue'
|
||||
import AdInline from '~/components/ad-inline.vue'
|
||||
import LinkButton from '~/components/link-button.vue'
|
||||
import RelativeTime from '~/components/relative-time.vue'
|
||||
import ListSummary from '~/components/list-summary.vue'
|
||||
|
|
@ -339,7 +344,7 @@ let storkClient = null
|
|||
|
||||
export default {
|
||||
components: {
|
||||
Carbon,
|
||||
AdInline,
|
||||
ListSummary,
|
||||
RelativeTime,
|
||||
LinkButton,
|
||||
|
|
@ -377,7 +382,8 @@ export default {
|
|||
filterQueryList: [],
|
||||
hasStartedAnyQuery: false,
|
||||
listingsResults: [],
|
||||
waitingForQuery: false
|
||||
waitingForQuery: false,
|
||||
isSSR: import.meta.env.SSR
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue