diff options
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> |
