Skip to content

Commit

Permalink
Merge #560: fix:[#448] no data font color fix
Browse files Browse the repository at this point in the history
a0d6cfa fix:[#448] no data font color fix (ngthhu)

Pull request description:

ACKs for top commit:
  josecelano:
    ACK a0d6cfa

Tree-SHA512: 833f2ec0a3fcdf32aec35b17c34e4627d8c1032c84d8ba49222da06050c0fdce4387e8ed3d9d1b853559bf3edba6fc219c43d2d4fd15fd82f8d7ac7cf7ff96dc
  • Loading branch information
josecelano committed May 20, 2024
2 parents dbeab81 + a0d6cfa commit 9b105ef
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 @@ -17,7 +17,7 @@
<Markdown :source="torrent.comment" />
</template>
<template v-else>
<span class="italic text-neutral-content">No comment provided.</span>
<span class="prose italic">No comment provided.</span>
</template>
</div>
</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 @@ -17,7 +17,7 @@
<Markdown :source="torrent.created_by" />
</template>
<template v-else>
<span class="italic text-neutral-content">No created by field provided.</span>
<span class="prose italic">No created by field provided.</span>
</template>
</div>
</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 @@ -17,7 +17,7 @@
<Markdown :source="formattedDateFromTimestamp" />
</template>
<template v-else>
<span class="italic text-neutral-content">No creation date provided.</span>
<span class="prose italic">No creation date provided.</span>
</template>
</div>
</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 @@ -17,7 +17,7 @@
<Markdown :source="torrent.description" />
</template>
<template v-else>
<span class="italic text-neutral-content">No description provided.</span>
<span class="prose italic">No description provided.</span>
</template>
</div>
</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 @@ -17,7 +17,7 @@
<Markdown :source="torrent.encoding" />
</template>
<template v-else>
<span class="italic text-neutral-content">No encoding provided.</span>
<span class="prose italic">No encoding provided.</span>
</template>
</div>
</template>
Expand Down

0 comments on commit 9b105ef

Please sign in to comment.