fix: hashtag id

This commit is contained in:
三咲智子 2023-01-07 22:21:48 +08:00
parent 30e4ef57df
commit d386a2dbbe
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
5 changed files with 9 additions and 7 deletions

View file

@ -17,7 +17,7 @@ const results = computed(() => {
const results = [
...hashtags.value.slice(0, 3).map<HashTagResult>(hashtag => ({
type: 'hashtag',
id: hashtag.id,
id: `hashtag-${hashtag.name}`,
hashtag,
to: getTagRoute(hashtag.name),
})),