Skip to content

Commit 475aba5

Browse files
committed
fix pr comment
1 parent c18b60b commit 475aba5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

redisinsight/ui/src/pages/pubSub/components/messages-list/MessagesList/MessagesList.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,8 @@ const MessagesList = (props: Props) => {
136136
content={channel}
137137
position="bottom"
138138
display="inlineBlock"
139-
anchorClassName={styles.channelAnchor}
140139
>
141-
<div>{channel}</div>
140+
<div className={styles.channelAnchor}>{channel}</div>
142141
</EuiToolTip>
143142
</div>
144143
<div className={styles.message} ref={rowRef}>{message}</div>

redisinsight/ui/src/pages/pubSub/components/messages-list/MessagesList/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
text-overflow: ellipsis;
2727
}
2828

29-
.channelAnchor > div {
29+
.channelAnchor {
3030
max-width: 220px;
3131
padding-right: 12px;
3232
overflow: hidden;

0 commit comments

Comments
 (0)