Fix instance name

This commit is contained in:
Owen
2025-10-13 12:13:04 -07:00
parent b6c1d9a592
commit c000c4502f
2 changed files with 14 additions and 3 deletions

View File

@@ -93,8 +93,18 @@ export default function GenerateLicenseKeysTable({
},
{
accessorKey: "instanceName",
cell: ({ row }) => {
return row.original.instanceName || "-";
header: ({ column }) => {
return (
<Button
variant="ghost"
onClick={() =>
column.toggleSorting(column.getIsSorted() === "asc")
}
>
{t("instanceName")}
<ArrowUpDown className="ml-2 h-4 w-4" />
</Button>
);
}
},
{