From 2c4dd0cdb75e47d9b982c1cf332242c9b4bde90f Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 23 Oct 2023 11:12:15 +0800 Subject: [PATCH] Add lang & dir to trending news --- src/pages/trending.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/pages/trending.jsx b/src/pages/trending.jsx index 793a8a2c..742c7175 100644 --- a/src/pages/trending.jsx +++ b/src/pages/trending.jsx @@ -230,10 +230,16 @@ function Trending({ columnMode, ...props }) { )} - {!!title &&

{title}

} + {!!title && ( +

+ {title} +

+ )} {!!description && ( -

{description}

+

+ {description} +

)}