aboutsummaryrefslogtreecommitdiff
path: root/src/ThreadList.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ThreadList.js')
-rw-r--r--src/ThreadList.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ThreadList.js b/src/ThreadList.js
index 56f9ab2..6069157 100644
--- a/src/ThreadList.js
+++ b/src/ThreadList.js
@@ -48,8 +48,8 @@ class ThreadList extends Component {
<Item.Group divided>
{threadList.map((thread, index) => {
return (
- <Item key={index}>
- {currentBoard.allow_images === 1 && (
+ <Item key={index} className={nightMode ? "inverted" : ""}>
+ {currentBoard.allow_images === 1 && thread.thumb !== "" && (
<Item.Image
size="tiny"
src={`https://bienvenidoainternet.org/${dir}/thumb/${thread.thumb}`}
@@ -59,7 +59,9 @@ class ThreadList extends Component {
<Item.Header
as={Link}
to={`/${dir}/read/${thread.id}`}
- className={nightMode && "inverted"}
+ className={
+ nightMode ? "threadTitle inverted" : "threadTitle"
+ }
>
{thread.subject}
</Item.Header>