Browse Source

#132

pull/141/head
みてるぞ 1 week ago
parent
commit
791253349e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frontend/src/components/TagSidebar.tsx

+ 1
- 1
frontend/src/components/TagSidebar.tsx View File

@@ -79,7 +79,7 @@ export default (({ posts }: Props) => {
try
{
const { data } = await axios.get (`${ API_BASE_URL }/posts/random`,
{ params: { tags: tagsQuery.split (' ').filter (e => e !== '').join (','),
{ params: { tags: tagsQuery.split (' ').filter (e => e !== '').join (' '),
match: (anyFlg ? 'any' : 'all') } })
navigate (`/posts/${ (data as Post).id }`)
}


Loading…
Cancel
Save