Skip to content

Commit

Permalink
Remove page title
Browse files Browse the repository at this point in the history
Signed-off-by: Olga Bulat <obulat@gmail.com>
  • Loading branch information
obulat committed Jan 25, 2024
1 parent eb948ed commit 6d8fe71
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/pages/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<script setup lang="ts">
import { definePageMeta, isSearchTypeSupported } from "#imports"
import { computed, inject, ref, watch } from "vue"
import { computed, inject, ref } from "vue"
import { storeToRefs } from "pinia"
import { searchMiddleware } from "~/middleware/search"
Expand Down Expand Up @@ -70,9 +70,4 @@ const results = computed(() => {
const isFetching = computed(() => mediaStore.fetchState.isFetching)
const isAllView = computed(() => searchType.value === ALL_MEDIA)
const pageTitle = ref(`${searchTerm.value} | Openverse`)
watch(searchTerm, (newTerm) => {
pageTitle.value = `${newTerm} | Openverse`
})
</script>

0 comments on commit 6d8fe71

Please sign in to comment.