Skip to content

Commit

Permalink
Merge pull request #4323 from traPtitech/fix/sidebar_hash
Browse files Browse the repository at this point in the history
サイドバーの#を押しても遷移するように
  • Loading branch information
dye8128 authored Jun 26, 2024
2 parents 470c2a1 + 73470b7 commit bedb7d5
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
:class="$style.channelNameContainer"
:data-is-current="$boolAttr(isCurrent)"
>
<span :data-is-current="$boolAttr(isCurrent)" :class="$style.channelHash">
#
</span>
<span>
<router-link :to="isCurrent ? '' : link">{{ name }}</router-link>
</span>
<router-link :to="isCurrent ? '' : link">
<span :class="$style.channelHash"> # </span>
<span>
{{ name }}
</span>
</router-link>
</div>
<div v-if="topic" :class="$style.topic">
<inline-markdown
Expand Down

0 comments on commit bedb7d5

Please sign in to comment.