|
@@ -120,7 +120,7 @@ export const Comment = (props: CommentProps): JSX.Element => {
|
|
|
: null;
|
|
: null;
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
- <React.Fragment>
|
|
|
|
|
|
|
+ <>
|
|
|
{(isReEdit && !isReadOnly) ? (
|
|
{(isReEdit && !isReadOnly) ? (
|
|
|
<CommentEditor
|
|
<CommentEditor
|
|
|
rendererOptions={rendererOptions}
|
|
rendererOptions={rendererOptions}
|
|
@@ -173,6 +173,6 @@ export const Comment = (props: CommentProps): JSX.Element => {
|
|
|
</div>
|
|
</div>
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|
|
|
- </React.Fragment>
|
|
|
|
|
|
|
+ </>
|
|
|
);
|
|
);
|
|
|
};
|
|
};
|