summaryrefslogtreecommitdiff
path: root/lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx')
-rw-r--r--lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx b/lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx
index 9f89a6ac..991c1ad6 100644
--- a/lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx
+++ b/lib/vendor-investigation/table/investigation-table-toolbar-actions.tsx
@@ -2,12 +2,13 @@
import * as React from "react"
import { type Table } from "@tanstack/react-table"
-import { Download, Upload, Check } from "lucide-react"
+import { Download, RotateCcw } from "lucide-react"
import { toast } from "sonner"
import { exportTableToExcel } from "@/lib/export"
import { Button } from "@/components/ui/button"
import { VendorInvestigationsViewWithContacts } from "@/config/vendorInvestigationsColumnsConfig"
+import { InvestigationCancelPlanButton } from "./investigation-cancel-plan-button"
interface VendorsTableToolbarActionsProps {
@@ -20,6 +21,7 @@ export function VendorsTableToolbarActions({ table }: VendorsTableToolbarActions
return (
<div className="flex items-center gap-2">
+ <InvestigationCancelPlanButton table={table} />
{/** 4) Export 버튼 */}
<Button