mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-05 10:16:41 +00:00
Fix instance name
This commit is contained in:
@@ -1858,5 +1858,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"priority": "Priority",
|
"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"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -93,8 +93,18 @@ export default function GenerateLicenseKeysTable({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
accessorKey: "instanceName",
|
accessorKey: "instanceName",
|
||||||
cell: ({ row }) => {
|
header: ({ column }) => {
|
||||||
return row.original.instanceName || "-";
|
return (
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
onClick={() =>
|
||||||
|
column.toggleSorting(column.getIsSorted() === "asc")
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{t("instanceName")}
|
||||||
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user