Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 0bb7594

Browse files
author
Noah Lee
committed
Fix the popover event trigger for review comment (#306)
1 parent 84080d9 commit 0bb7594

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/src/components/ReviewerList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ function ReviewItem(props: {review: Review}): JSX.Element {
4646
return comment !== ""?
4747
<Popover
4848
title="Comment"
49+
trigger="click"
4950
content={<div style={{whiteSpace: "pre"}}>{comment}</div>}
5051
>
5152
<Button
@@ -82,5 +83,5 @@ export function ReviewStatus(props: {reviews: Review[]}): JSX.Element {
8283
}
8384
}
8485

85-
return <span><SyncOutlined spin/>&nbsp;&nbsp;Pending</span>
86+
return <span><SyncOutlined />&nbsp;&nbsp;Pending</span>
8687
}

0 commit comments

Comments
 (0)