2023-11-01 08:52:29 +00:00
|
|
|
import { FC, ReactNode, useState } from "react";
|
2023-10-18 14:28:05 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { observer } from "mobx-react-lite";
|
2023-10-20 07:03:39 +00:00
|
|
|
import useSWR from "swr";
|
2023-11-03 13:43:10 +00:00
|
|
|
import { MoveRight, MoveDiagonal, Bell, Link2, Trash2 } from "lucide-react";
|
2023-12-07 12:43:27 +00:00
|
|
|
// mobx store
|
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
2023-10-18 14:28:05 +00:00
|
|
|
// components
|
2023-12-07 12:43:27 +00:00
|
|
|
import {
|
|
|
|
DeleteArchivedIssueModal,
|
|
|
|
DeleteIssueModal,
|
|
|
|
IssueActivity,
|
|
|
|
IssueUpdateStatus,
|
|
|
|
PeekOverviewIssueDetails,
|
|
|
|
PeekOverviewProperties,
|
|
|
|
} from "components/issues";
|
|
|
|
// ui
|
2023-11-08 12:22:34 +00:00
|
|
|
import { Button, CenterPanelIcon, CustomSelect, FullScreenPanelIcon, SidePanelIcon, Spinner } from "@plane/ui";
|
2023-10-18 14:28:05 +00:00
|
|
|
// types
|
2023-12-11 16:56:29 +00:00
|
|
|
import { IIssue, IIssueLink, ILinkDetails } from "types";
|
2023-10-18 14:28:05 +00:00
|
|
|
|
|
|
|
interface IIssueView {
|
|
|
|
workspaceSlug: string;
|
|
|
|
projectId: string;
|
|
|
|
issueId: string;
|
2023-11-03 14:50:05 +00:00
|
|
|
issue: IIssue | null;
|
|
|
|
isLoading?: boolean;
|
|
|
|
isArchived?: boolean;
|
|
|
|
handleCopyText: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
|
|
redirectToIssueDetail: () => void;
|
2023-10-18 14:28:05 +00:00
|
|
|
issueUpdate: (issue: Partial<IIssue>) => void;
|
2023-10-20 07:03:39 +00:00
|
|
|
issueReactionCreate: (reaction: string) => void;
|
|
|
|
issueReactionRemove: (reaction: string) => void;
|
2023-10-20 12:25:20 +00:00
|
|
|
issueCommentCreate: (comment: any) => void;
|
|
|
|
issueCommentUpdate: (comment: any) => void;
|
|
|
|
issueCommentRemove: (commentId: string) => void;
|
|
|
|
issueCommentReactionCreate: (commentId: string, reaction: string) => void;
|
|
|
|
issueCommentReactionRemove: (commentId: string, reaction: string) => void;
|
2023-11-01 08:52:29 +00:00
|
|
|
issueSubscriptionCreate: () => void;
|
|
|
|
issueSubscriptionRemove: () => void;
|
2023-12-11 16:56:29 +00:00
|
|
|
issueLinkCreate: (formData: IIssueLink) => Promise<ILinkDetails>;
|
|
|
|
issueLinkUpdate: (formData: IIssueLink, linkId: string) => Promise<ILinkDetails>;
|
|
|
|
issueLinkDelete: (linkId: string) => Promise<void>;
|
2023-11-01 08:52:29 +00:00
|
|
|
handleDeleteIssue: () => Promise<void>;
|
2023-10-18 14:28:05 +00:00
|
|
|
children: ReactNode;
|
2023-11-03 13:43:10 +00:00
|
|
|
disableUserActions?: boolean;
|
|
|
|
showCommentAccessSpecifier?: boolean;
|
2023-10-18 14:28:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type TPeekModes = "side-peek" | "modal" | "full-screen";
|
|
|
|
|
2023-12-07 12:43:27 +00:00
|
|
|
const PEEK_OPTIONS: { key: TPeekModes; icon: any; title: string }[] = [
|
2023-10-18 14:28:05 +00:00
|
|
|
{
|
|
|
|
key: "side-peek",
|
2023-11-03 12:31:34 +00:00
|
|
|
icon: SidePanelIcon,
|
2023-10-18 14:28:05 +00:00
|
|
|
title: "Side Peek",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "modal",
|
2023-11-03 12:31:34 +00:00
|
|
|
icon: CenterPanelIcon,
|
2023-10-18 14:28:05 +00:00
|
|
|
title: "Modal",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "full-screen",
|
2023-11-03 12:31:34 +00:00
|
|
|
icon: FullScreenPanelIcon,
|
2023-10-18 14:28:05 +00:00
|
|
|
title: "Full Screen",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export const IssueView: FC<IIssueView> = observer((props) => {
|
2023-10-20 07:03:39 +00:00
|
|
|
const {
|
|
|
|
workspaceSlug,
|
|
|
|
projectId,
|
|
|
|
issueId,
|
2023-11-03 14:50:05 +00:00
|
|
|
issue,
|
|
|
|
isLoading,
|
|
|
|
isArchived,
|
|
|
|
handleCopyText,
|
|
|
|
redirectToIssueDetail,
|
2023-10-20 07:03:39 +00:00
|
|
|
issueUpdate,
|
|
|
|
issueReactionCreate,
|
|
|
|
issueReactionRemove,
|
2023-10-20 12:25:20 +00:00
|
|
|
issueCommentCreate,
|
|
|
|
issueCommentUpdate,
|
|
|
|
issueCommentRemove,
|
|
|
|
issueCommentReactionCreate,
|
|
|
|
issueCommentReactionRemove,
|
2023-11-01 08:52:29 +00:00
|
|
|
issueSubscriptionCreate,
|
|
|
|
issueSubscriptionRemove,
|
2023-12-11 16:56:29 +00:00
|
|
|
issueLinkCreate,
|
|
|
|
issueLinkUpdate,
|
|
|
|
issueLinkDelete,
|
2023-11-01 08:52:29 +00:00
|
|
|
handleDeleteIssue,
|
2023-10-20 07:03:39 +00:00
|
|
|
children,
|
2023-11-03 13:43:10 +00:00
|
|
|
disableUserActions = false,
|
|
|
|
showCommentAccessSpecifier = false,
|
2023-10-20 07:03:39 +00:00
|
|
|
} = props;
|
2023-10-18 14:28:05 +00:00
|
|
|
|
|
|
|
const router = useRouter();
|
2023-12-07 12:43:27 +00:00
|
|
|
const { peekIssueId } = router.query;
|
2023-10-18 14:28:05 +00:00
|
|
|
|
2023-12-07 12:43:27 +00:00
|
|
|
const {
|
|
|
|
user: { currentUser },
|
|
|
|
issueDetail: { fetchIssueSubscription, getIssueActivity, getIssueReactions, getIssueSubscription, setPeekId },
|
|
|
|
} = useMobxStore();
|
2023-10-18 14:28:05 +00:00
|
|
|
|
|
|
|
const [peekMode, setPeekMode] = useState<TPeekModes>("side-peek");
|
2023-11-01 08:52:29 +00:00
|
|
|
const [deleteIssueModal, setDeleteIssueModal] = useState(false);
|
2023-12-05 09:10:29 +00:00
|
|
|
const [isSubmitting, setIsSubmitting] = useState<"submitting" | "submitted" | "saved">("saved");
|
2023-11-01 08:52:29 +00:00
|
|
|
|
2023-10-18 14:28:05 +00:00
|
|
|
const updateRoutePeekId = () => {
|
|
|
|
if (issueId != peekIssueId) {
|
2023-12-07 12:43:27 +00:00
|
|
|
setPeekId(issueId);
|
2023-10-18 14:28:05 +00:00
|
|
|
const { query } = router;
|
|
|
|
router.push({
|
|
|
|
pathname: router.pathname,
|
2023-11-29 08:55:57 +00:00
|
|
|
query: { ...query, peekIssueId: issueId, peekProjectId: projectId },
|
2023-10-18 14:28:05 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2023-12-07 12:43:27 +00:00
|
|
|
|
2023-10-18 14:28:05 +00:00
|
|
|
const removeRoutePeekId = () => {
|
|
|
|
const { query } = router;
|
2023-12-07 12:43:27 +00:00
|
|
|
|
2023-10-18 14:28:05 +00:00
|
|
|
if (query.peekIssueId) {
|
2023-12-07 12:43:27 +00:00
|
|
|
setPeekId(null);
|
|
|
|
|
2023-10-18 14:28:05 +00:00
|
|
|
delete query.peekIssueId;
|
2023-11-29 08:55:57 +00:00
|
|
|
delete query.peekProjectId;
|
2023-10-18 14:28:05 +00:00
|
|
|
router.push({
|
|
|
|
pathname: router.pathname,
|
|
|
|
query: { ...query },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-11-01 08:52:29 +00:00
|
|
|
useSWR(
|
|
|
|
workspaceSlug && projectId && issueId && peekIssueId && issueId === peekIssueId
|
|
|
|
? `ISSUE_PEEK_OVERVIEW_SUBSCRIPTION_${workspaceSlug}_${projectId}_${peekIssueId}`
|
|
|
|
: null,
|
|
|
|
async () => {
|
|
|
|
if (workspaceSlug && projectId && issueId && peekIssueId && issueId === peekIssueId) {
|
2023-12-07 12:43:27 +00:00
|
|
|
await fetchIssueSubscription(workspaceSlug, projectId, issueId);
|
2023-11-01 08:52:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2023-12-07 12:43:27 +00:00
|
|
|
const issueReactions = getIssueReactions || [];
|
|
|
|
const issueActivity = getIssueActivity;
|
|
|
|
const issueSubscription = getIssueSubscription || [];
|
2023-10-18 14:28:05 +00:00
|
|
|
|
2023-12-07 12:43:27 +00:00
|
|
|
const currentMode = PEEK_OPTIONS.find((m) => m.key === peekMode);
|
2023-11-01 08:52:29 +00:00
|
|
|
|
2023-10-18 14:28:05 +00:00
|
|
|
return (
|
2023-11-01 08:52:29 +00:00
|
|
|
<>
|
2023-11-03 14:50:05 +00:00
|
|
|
{issue && !isArchived && (
|
2023-11-01 08:52:29 +00:00
|
|
|
<DeleteIssueModal
|
|
|
|
isOpen={deleteIssueModal}
|
|
|
|
handleClose={() => setDeleteIssueModal(false)}
|
|
|
|
data={issue}
|
|
|
|
onSubmit={handleDeleteIssue}
|
|
|
|
/>
|
|
|
|
)}
|
2023-11-03 14:50:05 +00:00
|
|
|
{issue && isArchived && (
|
|
|
|
<DeleteArchivedIssueModal
|
|
|
|
data={issue}
|
|
|
|
isOpen={deleteIssueModal}
|
|
|
|
handleClose={() => setDeleteIssueModal(false)}
|
|
|
|
onSubmit={handleDeleteIssue}
|
|
|
|
/>
|
|
|
|
)}
|
2023-11-08 12:22:34 +00:00
|
|
|
<div className="w-full truncate !text-base">
|
2023-11-03 11:50:14 +00:00
|
|
|
{children && (
|
|
|
|
<div onClick={updateRoutePeekId} className="w-full cursor-pointer">
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
)}
|
2023-10-18 14:28:05 +00:00
|
|
|
|
2023-11-01 08:52:29 +00:00
|
|
|
{issueId === peekIssueId && (
|
|
|
|
<div
|
2023-12-10 10:18:10 +00:00
|
|
|
className={`fixed z-20 flex flex-col overflow-hidden rounded border border-custom-border-200 bg-custom-background-100 transition-all duration-300
|
|
|
|
${peekMode === "side-peek" ? `bottom-0 right-0 top-0 w-full md:w-[50%]` : ``}
|
|
|
|
${peekMode === "modal" ? `left-[50%] top-[50%] h-5/6 w-5/6 -translate-x-[50%] -translate-y-[50%]` : ``}
|
|
|
|
${peekMode === "full-screen" ? `bottom-0 left-0 right-0 top-0 m-4` : ``}
|
2023-10-18 14:28:05 +00:00
|
|
|
`}
|
2023-11-01 08:52:29 +00:00
|
|
|
style={{
|
|
|
|
boxShadow:
|
|
|
|
"0px 4px 8px 0px rgba(0, 0, 0, 0.12), 0px 6px 12px 0px rgba(16, 24, 40, 0.12), 0px 1px 16px 0px rgba(16, 24, 40, 0.12)",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{/* header */}
|
2023-11-07 10:28:42 +00:00
|
|
|
<div
|
|
|
|
className={`relative flex items-center justify-between p-4 ${
|
|
|
|
currentMode?.key === "full-screen" ? "border-b border-custom-border-200" : ""
|
|
|
|
}`}
|
|
|
|
>
|
2023-11-01 08:52:29 +00:00
|
|
|
<div className="flex items-center gap-4">
|
|
|
|
<button onClick={removeRoutePeekId}>
|
|
|
|
<MoveRight className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
|
|
</button>
|
2023-10-18 14:28:05 +00:00
|
|
|
|
2023-11-01 08:52:29 +00:00
|
|
|
<button onClick={redirectToIssueDetail}>
|
|
|
|
<MoveDiagonal className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
|
|
</button>
|
|
|
|
{currentMode && (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex flex-shrink-0 items-center gap-2">
|
2023-11-01 08:52:29 +00:00
|
|
|
<CustomSelect
|
|
|
|
value={currentMode}
|
|
|
|
onChange={(val: any) => setPeekMode(val)}
|
|
|
|
customButton={
|
|
|
|
<button type="button" className="">
|
|
|
|
<currentMode.icon className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
|
|
</button>
|
|
|
|
}
|
|
|
|
>
|
2023-12-07 12:43:27 +00:00
|
|
|
{PEEK_OPTIONS.map((mode) => (
|
2023-11-01 08:52:29 +00:00
|
|
|
<CustomSelect.Option key={mode.key} value={mode.key}>
|
2023-11-03 12:31:34 +00:00
|
|
|
<div
|
|
|
|
className={`flex items-center gap-1.5 ${
|
|
|
|
currentMode.key === mode.key
|
|
|
|
? "text-custom-text-200"
|
|
|
|
: "text-custom-text-400 hover:text-custom-text-200"
|
|
|
|
}`}
|
|
|
|
>
|
2023-12-10 10:18:10 +00:00
|
|
|
<mode.icon className="-my-1 h-4 w-4 flex-shrink-0" />
|
2023-11-01 08:52:29 +00:00
|
|
|
{mode.title}
|
|
|
|
</div>
|
|
|
|
</CustomSelect.Option>
|
|
|
|
))}
|
|
|
|
</CustomSelect>
|
|
|
|
</div>
|
|
|
|
)}
|
2023-10-18 14:28:05 +00:00
|
|
|
</div>
|
2023-12-05 09:10:29 +00:00
|
|
|
<div className="flex items-center gap-x-4">
|
|
|
|
<IssueUpdateStatus isSubmitting={isSubmitting} />
|
|
|
|
<div className="flex items-center gap-4">
|
2023-12-07 12:43:27 +00:00
|
|
|
{issue?.created_by !== currentUser?.id &&
|
|
|
|
!issue?.assignees.includes(currentUser?.id ?? "") &&
|
2023-12-05 09:10:29 +00:00
|
|
|
!router.pathname.includes("[archivedIssueId]") && (
|
|
|
|
<Button
|
|
|
|
size="sm"
|
|
|
|
prependIcon={<Bell className="h-3 w-3" />}
|
|
|
|
variant="outline-primary"
|
|
|
|
className="hover:!bg-custom-primary-100/20"
|
|
|
|
onClick={() =>
|
|
|
|
issueSubscription && issueSubscription.subscribed
|
|
|
|
? issueSubscriptionRemove()
|
|
|
|
: issueSubscriptionCreate()
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{issueSubscription && issueSubscription.subscribed ? "Unsubscribe" : "Subscribe"}
|
|
|
|
</Button>
|
|
|
|
)}
|
|
|
|
<button onClick={handleCopyText}>
|
2023-12-10 10:18:10 +00:00
|
|
|
<Link2 className="h-4 w-4 -rotate-45 text-custom-text-300 hover:text-custom-text-200" />
|
2023-11-03 13:43:10 +00:00
|
|
|
</button>
|
2023-12-05 09:10:29 +00:00
|
|
|
{!disableUserActions && (
|
|
|
|
<button onClick={() => setDeleteIssueModal(true)}>
|
|
|
|
<Trash2 className="h-4 w-4 text-custom-text-300 hover:text-custom-text-200" />
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
2023-10-18 14:28:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-11-01 08:52:29 +00:00
|
|
|
{/* content */}
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="relative h-full w-full overflow-hidden overflow-y-auto">
|
2023-11-03 14:50:05 +00:00
|
|
|
{isLoading && !issue ? (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex h-full w-full items-center justify-center">
|
2023-11-08 15:01:46 +00:00
|
|
|
<Spinner />
|
|
|
|
</div>
|
2023-11-01 08:52:29 +00:00
|
|
|
) : (
|
|
|
|
issue && (
|
|
|
|
<>
|
|
|
|
{["side-peek", "modal"].includes(peekMode) ? (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="relative flex flex-col gap-3 px-8 py-5">
|
2023-11-20 07:18:30 +00:00
|
|
|
{isArchived && (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="absolute left-0 top-0 z-[9] flex h-full min-h-full w-full items-center justify-center bg-custom-background-100 opacity-60" />
|
2023-11-20 07:18:30 +00:00
|
|
|
)}
|
2023-10-18 14:28:05 +00:00
|
|
|
<PeekOverviewIssueDetails
|
2023-12-05 09:10:29 +00:00
|
|
|
setIsSubmitting={(value) => setIsSubmitting(value)}
|
|
|
|
isSubmitting={isSubmitting}
|
2023-10-18 14:28:05 +00:00
|
|
|
workspaceSlug={workspaceSlug}
|
|
|
|
issue={issue}
|
|
|
|
issueUpdate={issueUpdate}
|
2023-11-01 08:52:29 +00:00
|
|
|
issueReactions={issueReactions}
|
2023-12-07 12:43:27 +00:00
|
|
|
user={currentUser}
|
2023-10-20 07:03:39 +00:00
|
|
|
issueReactionCreate={issueReactionCreate}
|
|
|
|
issueReactionRemove={issueReactionRemove}
|
2023-10-18 14:28:05 +00:00
|
|
|
/>
|
|
|
|
|
2023-11-03 13:43:10 +00:00
|
|
|
<PeekOverviewProperties
|
|
|
|
issue={issue}
|
|
|
|
issueUpdate={issueUpdate}
|
2023-12-11 16:56:29 +00:00
|
|
|
issueLinkCreate={issueLinkCreate}
|
|
|
|
issueLinkUpdate={issueLinkUpdate}
|
|
|
|
issueLinkDelete={issueLinkDelete}
|
2023-11-03 13:43:10 +00:00
|
|
|
disableUserActions={disableUserActions}
|
|
|
|
/>
|
2023-10-20 12:25:20 +00:00
|
|
|
|
2023-12-07 12:43:27 +00:00
|
|
|
<IssueActivity
|
2023-10-20 12:25:20 +00:00
|
|
|
workspaceSlug={workspaceSlug}
|
|
|
|
projectId={projectId}
|
2023-10-25 13:54:14 +00:00
|
|
|
issueId={issueId}
|
2023-12-07 12:43:27 +00:00
|
|
|
user={currentUser}
|
|
|
|
issueActivity={issueActivity}
|
2023-10-20 12:25:20 +00:00
|
|
|
issueCommentCreate={issueCommentCreate}
|
|
|
|
issueCommentUpdate={issueCommentUpdate}
|
|
|
|
issueCommentRemove={issueCommentRemove}
|
|
|
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
|
|
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
2023-11-03 13:43:10 +00:00
|
|
|
showCommentAccessSpecifier={showCommentAccessSpecifier}
|
2023-10-20 12:25:20 +00:00
|
|
|
/>
|
2023-10-18 14:28:05 +00:00
|
|
|
</div>
|
2023-11-01 08:52:29 +00:00
|
|
|
) : (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className={`flex h-full w-full overflow-auto ${isArchived ? "opacity-60" : ""}`}>
|
|
|
|
<div className="relative h-full w-full space-y-6 overflow-auto p-4 py-5">
|
2023-11-20 07:18:30 +00:00
|
|
|
<div className={isArchived ? "pointer-events-none" : ""}>
|
|
|
|
<PeekOverviewIssueDetails
|
2023-12-05 09:10:29 +00:00
|
|
|
setIsSubmitting={(value) => setIsSubmitting(value)}
|
|
|
|
isSubmitting={isSubmitting}
|
2023-11-20 07:18:30 +00:00
|
|
|
workspaceSlug={workspaceSlug}
|
|
|
|
issue={issue}
|
|
|
|
issueReactions={issueReactions}
|
|
|
|
issueUpdate={issueUpdate}
|
2023-12-07 12:43:27 +00:00
|
|
|
user={currentUser}
|
2023-11-20 07:18:30 +00:00
|
|
|
issueReactionCreate={issueReactionCreate}
|
|
|
|
issueReactionRemove={issueReactionRemove}
|
|
|
|
/>
|
2023-11-01 08:52:29 +00:00
|
|
|
|
2023-12-07 12:43:27 +00:00
|
|
|
<IssueActivity
|
2023-11-20 07:18:30 +00:00
|
|
|
workspaceSlug={workspaceSlug}
|
|
|
|
projectId={projectId}
|
|
|
|
issueId={issueId}
|
2023-12-07 12:43:27 +00:00
|
|
|
user={currentUser}
|
|
|
|
issueActivity={issueActivity}
|
2023-11-20 07:18:30 +00:00
|
|
|
issueCommentCreate={issueCommentCreate}
|
|
|
|
issueCommentUpdate={issueCommentUpdate}
|
|
|
|
issueCommentRemove={issueCommentRemove}
|
|
|
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
|
|
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
|
|
|
showCommentAccessSpecifier={showCommentAccessSpecifier}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-11-01 08:52:29 +00:00
|
|
|
</div>
|
2023-11-20 07:18:30 +00:00
|
|
|
<div
|
2023-12-10 10:18:10 +00:00
|
|
|
className={`h-full !w-[400px] flex-shrink-0 border-l border-custom-border-200 p-4 py-5 ${
|
2023-11-20 07:18:30 +00:00
|
|
|
isArchived ? "pointer-events-none" : ""
|
|
|
|
}`}
|
|
|
|
>
|
2023-11-03 13:43:10 +00:00
|
|
|
<PeekOverviewProperties
|
|
|
|
issue={issue}
|
|
|
|
issueUpdate={issueUpdate}
|
2023-12-11 16:56:29 +00:00
|
|
|
issueLinkCreate={issueLinkCreate}
|
|
|
|
issueLinkUpdate={issueLinkUpdate}
|
|
|
|
issueLinkDelete={issueLinkDelete}
|
2023-11-03 13:43:10 +00:00
|
|
|
disableUserActions={disableUserActions}
|
|
|
|
/>
|
2023-11-01 08:52:29 +00:00
|
|
|
</div>
|
2023-10-18 14:28:05 +00:00
|
|
|
</div>
|
2023-11-01 08:52:29 +00:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
)}
|
|
|
|
</div>
|
2023-10-18 14:28:05 +00:00
|
|
|
</div>
|
2023-11-01 08:52:29 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</>
|
2023-10-18 14:28:05 +00:00
|
|
|
);
|
|
|
|
});
|