Skip to content

Commit 1c83d17

Browse files
committed
Merge #476: Add torrent title in TorrentDetails component
bc461b4 feat: [#456] add torrent title in TorrentDetails component (Jose Celano) Pull request description: It's duplicated in the ActionCard component. But with small screens the action card is on top of the detail tabs. ACKs for top commit: josecelano: ACK bc461b4 Tree-SHA512: 3e3d14ec8bd362d9f11084383c55c3973873dcab4ea2677d5eb10513b0189022ab34a46bc3fddbfa1f3e9104859f6e749e5658f944d54193a2f90add1c4adbbe
2 parents 8d60f04 + bc461b4 commit 1c83d17

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

components/torrent/TorrentDetails.vue

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
</button>
1616
</div>
1717
<div v-if="torrent" class="flex flex-col flex-auto w-full gap-6">
18+
<span class="text-lg font-bold capitalize truncate" :v-if="torrent">{{ torrent.title }}</span>
1819
<TorrentDescriptionTab :torrent="torrent" @updated="reloadTorrent" />
1920
<TorrentCommentTab :torrent="torrent" @updated="reloadTorrent" />
2021
<TorrentCreationDateTab :torrent="torrent" @updated="reloadTorrent" />

0 commit comments

Comments
 (0)