diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-08-14 11:54:47 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-08-14 11:54:47 +0000 |
| commit | 969c25b56f6d29d7ffa4bc2ce04c5fb4e5846b34 (patch) | |
| tree | 551d335e850e6163792ded0e7a75fa41d96d612a /components/form-data/form-data-table.tsx | |
| parent | dd20ba9785cdbd3d61f6b014d003d3bd9646ad13 (diff) | |
(대표님) 정규벤더등록, 벤더문서관리, 벤더데이터입력, 첨부파일관리
Diffstat (limited to 'components/form-data/form-data-table.tsx')
| -rw-r--r-- | components/form-data/form-data-table.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/form-data/form-data-table.tsx b/components/form-data/form-data-table.tsx index b2fadacf..4f101b45 100644 --- a/components/form-data/form-data-table.tsx +++ b/components/form-data/form-data-table.tsx @@ -747,10 +747,10 @@ export default function DynamicTable({ <DropdownMenu> <DropdownMenuTrigger asChild> <Button variant="outline" size="sm" disabled={isAnyOperationPending}> - {(isSyncingTags || isLoadingTags) && ( + {(isSyncingTags || isLoadingTags) ? ( <Loader className="mr-2 size-4 animate-spin" aria-hidden="true" /> - )} - <TagsIcon className="size-4" /> + ): + <TagsIcon className="size-4" />} {t("buttons.tagOperations")} </Button> </DropdownMenuTrigger> |
