Skip to content

Commit

Permalink
Merge #531: fix:[#525] add break-words to torrent component tab
Browse files Browse the repository at this point in the history
769a832 fix:[#525] add break-words to torrent component tab (ngthhu)

Pull request description:

ACKs for top commit:
  josecelano:
    ACK 769a832

Tree-SHA512: 0dd7250fe98453e7efd53e96cb5ad069e6365622f23dce3f80011a1d29e3affd9860409984a92efb156b4f2e7fc18ceb829d06f921844be6e72eb566c1942490
  • Loading branch information
josecelano committed Apr 22, 2024
2 parents 330c8eb + 769a832 commit 13e1f03
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/torrent/TorrentCommentTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</button>
</div>
<template v-if="!collapsed">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl break-words">
<template v-if="torrent.comment">
<Markdown :source="torrent.comment" />
</template>
Expand Down
2 changes: 1 addition & 1 deletion components/torrent/TorrentCreatedByTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</button>
</div>
<template v-if="!collapsed">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl break-words">
<template v-if="torrent.created_by">
<Markdown :source="torrent.created_by" />
</template>
Expand Down
2 changes: 1 addition & 1 deletion components/torrent/TorrentCreationDateTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</button>
</div>
<template v-if="!collapsed">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl break-words">
<template v-if="torrent.creation_date">
{{ formattedDateFromTimestamp }}
</template>
Expand Down
2 changes: 1 addition & 1 deletion components/torrent/TorrentDescriptionTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</button>
</div>
<template v-if="!collapsed">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl break-words">
<template v-if="torrent.description">
<Markdown :source="torrent.description" />
</template>
Expand Down
2 changes: 1 addition & 1 deletion components/torrent/TorrentEncodingTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</button>
</div>
<template v-if="!collapsed">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl">
<div class="flex flex-col w-full h-full p-6 grow bg-base-100 rounded-2xl break-words">
<template v-if="torrent.encoding">
<Markdown :source="torrent.encoding" />
</template>
Expand Down

0 comments on commit 13e1f03

Please sign in to comment.