Skip to content

Commit

Permalink
Merge pull request #198 from traPtitech/contest_url
Browse files Browse the repository at this point in the history
リンクが指定されていないときに表示されないようにした
  • Loading branch information
sh0go07 authored Jul 16, 2024
2 parents 4f67e51 + a2ade70 commit 25d82c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/ContestTeamPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ onMounted(() => {
<div :class="$style.container">
<div :class="$style.titleContainer">
<page-title>チーム {{ contestTeamDetail.name }}</page-title>
<external-link :href="contestTeamDetail.link">
<external-link
v-if="contestTeamDetail.link"
:href="contestTeamDetail.link"
>
説明ページ
</external-link>
</div>
Expand Down

0 comments on commit 25d82c0

Please sign in to comment.