Skip to content

Commit

Permalink
fix: query string after search
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolu89 committed Jan 21, 2024
1 parent 4a995b5 commit c183a02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion resources/views/components/layout.edge
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
<meta property="og:url" content="https://bips.xyz" />
<meta name="twitter:card" content="summary" />
@vite(['resources/js/app.js'])

@if(app.nodeEnvironment === 'production')
<script async data-website-id="74b22eed-bc05-4a3b-9f94-cc76a5c815ec" src="https://a.bips.xyz/script.js" data-do-not-track="true"></script>
@end
</head>

<body>
Expand Down
3 changes: 2 additions & 1 deletion resources/views/search.edge
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@layout({
title: `"${query}" on bips.xyz`,
description: `Search results for "${query}"`
description: `Search results for "${query}"`,
query: query
})
@if(searchResult.length === 0)
No result
Expand Down

0 comments on commit c183a02

Please sign in to comment.