Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: added paramenter on the issue worklog component
  • Loading branch information
gurusainath committed Jul 19, 2024
commit d451cca4f3d344b0087fe77cb6743cf260b571e5
1 change: 1 addition & 0 deletions web/ce/components/issues/worklog/activity/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ type TIssueActivityWorklog = {
projectId: string;
issueId: string;
activityComment: TIssueActivityComment;
ends?: "top" | "bottom";
};

export const IssueActivityWorklog: FC<TIssueActivityWorklog> = () => <></>;
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export const IssueActivityCommentRoot: FC<TIssueActivityCommentRoot> = observer(
projectId={projectId}
issueId={issueId}
activityComment={activityComment}
ends={index === 0 ? "top" : index === filteredActivityComments.length - 1 ? "bottom" : undefined}
/>
) : (
<></>
Expand Down