diff options
Diffstat (limited to 'lib/swp/table/swp-table-toolbar.tsx')
| -rw-r--r-- | lib/swp/table/swp-table-toolbar.tsx | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/lib/swp/table/swp-table-toolbar.tsx b/lib/swp/table/swp-table-toolbar.tsx index ea5ee729..594bdd77 100644 --- a/lib/swp/table/swp-table-toolbar.tsx +++ b/lib/swp/table/swp-table-toolbar.tsx @@ -27,6 +27,7 @@ interface SwpTableFilters { docTitle?: string; pkgNo?: string; stage?: string; + status?: string; } interface SwpTableToolbarProps { @@ -419,13 +420,14 @@ export function SwpTableToolbar({ {isUploading ? "업로드 중..." : "파일 업로드"} </Button> - {userId && ( + {/* 별도 탭으로 분리하고 메인 테이블로 변경하였음. */} + {/* {userId && ( <SwpUploadedFilesDialog projNo={projNo} vndrCd={vendorCode} userId={userId} /> - )} + )} */} <SwpUploadHelpDialog /> </div> @@ -577,6 +579,19 @@ export function SwpTableToolbar({ } /> </div> + + {/* 상태 */} + <div className="space-y-2"> + <Label htmlFor="status">상태</Label> + <Input + id="status" + placeholder="ex. standby.." + value={localFilters.status || ""} + onChange={(e) => + setLocalFilters({ ...localFilters, status: e.target.value }) + } + /> + </div> </div> <div className="flex justify-end"> |
