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

@@ -1858,5 +1858,6 @@
}
},
"priority": "Priority",
"priorityDescription": "Higher priority routes are evaluated first. Priority = 100 means automatic ordering (system decides). Use another number to enforce manual priority."
"priorityDescription": "Higher priority routes are evaluated first. Priority = 100 means automatic ordering (system decides). Use another number to enforce manual priority.",
"instanceName": "Instance Name"
}

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>
);
}
},
{