Hide protocol by default

This commit is contained in:
Owen
2026-04-20 17:05:12 -07:00
parent bf1787acd5
commit 2e8d170114

View File

@@ -378,6 +378,7 @@ export default function ProxyResourcesTable({
{
accessorKey: "protocol",
friendlyName: t("protocol"),
enableHiding: true,
header: () => <span className="p-3">{t("protocol")}</span>,
cell: ({ row }) => {
const resourceRow = row.original;
@@ -684,7 +685,7 @@ export default function ProxyResourcesTable({
isRefreshing={isRefreshing || isFiltering}
isNavigatingToAddPage={isNavigatingToAddPage}
enableColumnVisibility
columnVisibility={{ niceId: false }}
columnVisibility={{ niceId: false, protocol: false }}
stickyLeftColumn="name"
stickyRightColumn="actions"
/>