Added actors and movies to global search results.

This commit is contained in:
2024-06-02 05:22:08 +02:00
parent b144728e5f
commit 5b4aa9644b
13 changed files with 284 additions and 65 deletions

View File

@@ -1,13 +1,18 @@
<template>
<div>
<Scenes
:show-filters="false"
:show-meta="false"
:show-scope-tabs="true"
:show-filters="!!query"
:show-meta="!!query"
:show-scope-tabs="!query"
/>
</div>
</template>
<script setup>
import { inject } from 'vue';
import Scenes from '#/components/scenes/scenes.vue';
const pageContext = inject('pageContext');
const query = Object.hasOwn(pageContext.urlParsed.search, 'q');
</script>