diff --git a/src/components/comment/CommentsPopup.tsx b/src/components/comment/CommentsPopup.tsx
index ec1cdb8..527261d 100644
--- a/src/components/comment/CommentsPopup.tsx
+++ b/src/components/comment/CommentsPopup.tsx
@@ -296,41 +296,28 @@ export const CommentsPopup = () => {
{commentEvents.length > 0 && (
<>
-
+
Replies
-
-
-
+
+ {isLoading ? (
+ <>
+ Discovering replies
+
+ >
+ ) : discoveredCount ? (
+ <>Load {discoveredCount} discovered replies>
+ ) : (
+ <>No new replies>
+ )}
+
+
{commentEvents.map((reply) => (
diff --git a/src/styles/comments.css b/src/styles/comments.css
index e3c1dcc..d0dc7ea 100644
--- a/src/styles/comments.css
+++ b/src/styles/comments.css
@@ -479,6 +479,13 @@ hover {
width: 100%;
margin: 0 0 15px 0;
color: rgba(255, 255, 255, 0.5);
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+}
+
+.IBMSMSMBSSCL_CommentNoteRepliesTitleBtn {
+ font-size: 16px;
}
.IBMSMSMBSSCL_CAElementLoadWrapper {