Merge pull request #976 from ONLYOFFICE/fix/fix-bugs-on-mobiles
[mobile] Fix bug 51268
This commit is contained in:
commit
a10de0fa52
|
@ -457,7 +457,11 @@ class ViewCommentsController extends Component {
|
|||
});
|
||||
}
|
||||
closeViewCurComments () {
|
||||
f7.sheet.close('#view-comment-sheet');
|
||||
if (Device.phone) {
|
||||
f7.sheet.close('#view-comment-sheet');
|
||||
} else {
|
||||
f7.popover.close('#view-comment-popover');
|
||||
}
|
||||
this.setState({isOpenViewCurComments: false});
|
||||
}
|
||||
onResolveComment (comment) {
|
||||
|
|
Loading…
Reference in a new issue