Properly configure ssl and domain when creating and editing

This commit is contained in:
Owen
2026-08-06 12:20:56 -04:00
parent fb896d6c0f
commit b4d2974e19
5 changed files with 95 additions and 65 deletions
+8 -2
View File
@@ -332,7 +332,7 @@ export default function PrivateResourcesTable({
},
{
accessorKey: "mode",
friendlyName: t("editInternalResourceDialogMode"),
friendlyName: t("type"),
header: () => (
<ColumnFilterButton
options={[
@@ -351,6 +351,12 @@ export default function PrivateResourcesTable({
{
value: "ssh",
label: t("editInternalResourceDialogModeSsh")
},
{
value: "inference",
label: t(
"editInternalResourceDialogModeInference"
)
}
]}
selectedValue={searchParams.get("mode") ?? undefined}
@@ -359,7 +365,7 @@ export default function PrivateResourcesTable({
}
searchPlaceholder={t("searchPlaceholder")}
emptyMessage={t("emptySearchOptions")}
label={t("editInternalResourceDialogMode")}
label={t("type")}
className="p-3"
/>
),
+2 -3
View File
@@ -280,7 +280,7 @@ export default function PublicResourcesTable({
},
{
accessorKey: "protocol",
friendlyName: t("protocol"),
friendlyName: t("type"),
enableHiding: true,
header: () => (
<ColumnFilterButton
@@ -328,7 +328,7 @@ export default function PublicResourcesTable({
}
searchPlaceholder={t("searchPlaceholder")}
emptyMessage={t("emptySearchOptions")}
label={t("protocol")}
label={t("type")}
className="p-3"
/>
),
@@ -747,7 +747,6 @@ export default function PublicResourcesTable({
enableColumnVisibility
columnVisibility={{
niceId: false,
protocol: false,
labels: true
}}
stickyLeftColumn="name"