forked from github/plane
fix: peek overview comment ordering and comment icon alignment fix (#2753)
This commit is contained in:
parent
733fed76cc
commit
00e61a8753
@ -140,7 +140,7 @@ export const CommentCard: React.FC<Props> = ({
|
|||||||
</form>
|
</form>
|
||||||
<div className={`relative ${isEditing ? "hidden" : ""}`}>
|
<div className={`relative ${isEditing ? "hidden" : ""}`}>
|
||||||
{showAccessSpecifier && (
|
{showAccessSpecifier && (
|
||||||
<div className="absolute top-1 right-1.5 z-[1] text-custom-text-300">
|
<div className="absolute top-2.5 right-2.5 z-[1] text-custom-text-300">
|
||||||
{comment.access === "INTERNAL" ? <Lock className="h-3 w-3" /> : <Globe2 className="h-3 w-3" />}
|
{comment.access === "INTERNAL" ? <Lock className="h-3 w-3" /> : <Globe2 className="h-3 w-3" />}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
@ -42,8 +42,6 @@ export const IssueComment: FC<IIssueComment> = (props) => {
|
|||||||
<div className="font-medium text-lg">Activity</div>
|
<div className="font-medium text-lg">Activity</div>
|
||||||
|
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
<IssueCommentEditor onSubmit={handleAddComment} showAccessSpecifier={showCommentAccessSpecifier} />
|
|
||||||
|
|
||||||
<IssueActivityCard
|
<IssueActivityCard
|
||||||
workspaceSlug={workspaceSlug}
|
workspaceSlug={workspaceSlug}
|
||||||
projectId={projectId}
|
projectId={projectId}
|
||||||
@ -55,6 +53,7 @@ export const IssueComment: FC<IIssueComment> = (props) => {
|
|||||||
issueCommentReactionCreate={issueCommentReactionCreate}
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
||||||
issueCommentReactionRemove={issueCommentReactionRemove}
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
||||||
/>
|
/>
|
||||||
|
<IssueCommentEditor onSubmit={handleAddComment} showAccessSpecifier={showCommentAccessSpecifier} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user