/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ import { Button } from "@plane/propel/button"; import { EModalPosition, EModalWidth, ModalCore } from "@plane/ui"; type Props = { isOpen: boolean; isSubmitting?: boolean; issueName: string; onClose: () => void; onSubmit: () => Promise; }; export function ExternalContourDeleteModal(props: Props) { const { isOpen, isSubmitting = false, issueName, onClose, onSubmit } = props; return (

Удалить исходящую задачу

Задача «{issueName}» будет удалена из внешнего контура и из целевого проекта. Это действие нельзя отменить.

); }