このコミットが含まれているのは:
2025-05-24 05:46:24 +09:00
コミット 1b1392be4d
3個のファイルの変更50行の追加21行の削除
+4 -1
ファイルの表示
@@ -12,7 +12,10 @@ const PostPage = () => {
// const anyFlg = query.get ('match') === 'any'
const anyFlg = false
const tags = tagsQuery.split (' ').filter (e => e !== '')
document.title = `${ tags.join (anyFlg ? ' or ' : ' and ') } | ${ SITE_TITLE }`
if (tags.length)
document.title = `${ tags.join (anyFlg ? ' or ' : ' and ') } | ${ SITE_TITLE }`
else
document.title = `${ SITE_TITLE } 〜 ぼざクリも、ぼざろ外も、外伝もあるんだよ`
useEffect(() => {
const fetchPosts = async () => {