mirror of
https://github.com/fosrl/pangolin.git
synced 2026-08-09 14:08:16 +02:00
Properly configure ssl and domain when creating and editing
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
),
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user