fix: temporary use min-height for single comment view to not cutoff report dialog (#2476)

This commit is contained in:
Vinh
2019-08-19 12:34:39 -04:00
committed by Kim Gardner
parent d9ad1b2ee4
commit d400c1518c
2 changed files with 6 additions and 0 deletions
@@ -24,6 +24,11 @@ const ReportButtonWithPopover: React.FunctionComponent<Props> = ({
id={popoverID}
placement="top-end"
description="A dialog for reporting comments"
modifiers={{
flip: {
enabled: false,
},
}}
body={({ toggleVisibility, scheduleUpdate }) => (
<ClickOutside onClickOutside={toggleVisibility}>
<ReportPopover
@@ -1,5 +1,6 @@
.root {
width: 100%;
min-height: 400px;
}
.replyList {