diff --git a/src/components/post-desktop/post-desktop.tsx b/src/components/post-desktop/post-desktop.tsx
index 47b722a6..223440fc 100644
--- a/src/components/post-desktop/post-desktop.tsx
+++ b/src/components/post-desktop/post-desktop.tsx
@@ -407,16 +407,20 @@ const PostDesktop = ({ openReplyModal, post, roles, showAllReplies, showReplies
)}
{!isInPendingPostView &&
- !isDescription &&
- !isRules &&
- (stateString && stateString !== 'Failed' && state !== 'succeeded' && isInPostPageView ? (
-
-
-
-
- ) : (
- state === 'failed' && {t('failed')}
- ))}
+ !isDescription &&
+ !isRules &&
+ stateString &&
+ stateString !== 'Failed' &&
+ state !== 'succeeded' &&
+ isInPostPageView &&
+ !(!showReplies && !showAllReplies) ? (
+
+
+
+
+ ) : (
+ state === 'failed' && {t('failed')}
+ )}
);
};
diff --git a/src/components/post-mobile/post-mobile.tsx b/src/components/post-mobile/post-mobile.tsx
index 4f9f2edb..717d0f40 100644
--- a/src/components/post-mobile/post-mobile.tsx
+++ b/src/components/post-mobile/post-mobile.tsx
@@ -333,15 +333,19 @@ const PostMobile = ({ openReplyModal, post, roles, showAllReplies, showReplies =
)}
{!isInPendingPostView &&
- !isDescription &&
- !isRules &&
- (stateString && stateString !== 'Failed' && state !== 'succeeded' && isInPostPageView ? (
-
-
-
- ) : (
- state === 'failed' && {t('failed')}
- ))}
+ !isDescription &&
+ !isRules &&
+ stateString &&
+ stateString !== 'Failed' &&
+ state !== 'succeeded' &&
+ isInPostPageView &&
+ !(!showReplies && !showAllReplies) ? (
+
+
+
+ ) : (
+ state === 'failed' && {t('failed')}
+ )}
)}
>
diff --git a/src/views/post/post.module.css b/src/views/post/post.module.css
index fb931c4b..0bc3987c 100644
--- a/src/views/post/post.module.css
+++ b/src/views/post/post.module.css
@@ -221,7 +221,6 @@
.stateString {
color: var(--post-mobile-abbr-text-color);
- padding-left: 20px;
}
.loadingString {