mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
fix(cluster): fix cluster setup no ingress develop EE-4352 (#7776)
* fix(cluster) update cluster wo controllers EE-4352 * fix(ing): stop errors in ns EE-4352
This commit is contained in:
parent
7d8b037761
commit
1722257d68
6 changed files with 11 additions and 17 deletions
|
@ -19,6 +19,7 @@ interface Props {
|
|||
) => void; // angular function to save the ingress class list
|
||||
description: string;
|
||||
ingressControllers: IngressControllerClassMap[] | undefined;
|
||||
isLoading: boolean;
|
||||
noIngressControllerLabel: string;
|
||||
view: string;
|
||||
}
|
||||
|
@ -27,6 +28,7 @@ export function IngressClassDatatable({
|
|||
onChangeAvailability,
|
||||
description,
|
||||
ingressControllers,
|
||||
isLoading,
|
||||
noIngressControllerLabel,
|
||||
view,
|
||||
}: Props) {
|
||||
|
@ -42,7 +44,7 @@ export function IngressClassDatatable({
|
|||
storageKey="ingressClasses"
|
||||
columns={columns}
|
||||
settingsStore={settings}
|
||||
isLoading={!ingControllerFormValues}
|
||||
isLoading={isLoading}
|
||||
emptyContentLabel={noIngressControllerLabel}
|
||||
titleOptions={{
|
||||
icon: 'database',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue