Skip to content

Commit

Permalink
Merge branch 'release/2.24.0' into feature/complex-search-plus
Browse files Browse the repository at this point in the history
  • Loading branch information
lambry committed Jan 6, 2025
2 parents 230170b + b056a9d commit 6fde8d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Props {
const props = defineProps<Props>()
const { title, url, updated, summary } = useSearchResult(props.result)
const { title, url, summary } = useSearchResult(props.result)
const audience = computed(() =>
formatGrantAudiences(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ const props = withDefaults(defineProps<Props>(), {
})
const handleSelect = async (val: any) => {
if (!val) return
const locationParams = getScopedQueryParams('location', val)
await navigateTo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ export const SingleTemplate = (args) => ({
}}
args={{
title: 'Search banner',
intro: 'A neat little search banner.'
intro: 'A neat little search banner.',
searchBar: {
id: 'search-banner'
}
}}
/>

Expand Down

0 comments on commit 6fde8d2

Please sign in to comment.