We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd52c2c commit 833ea18Copy full SHA for 833ea18
src/components/Graphs/graphUtils.ts
@@ -8,7 +8,7 @@ export const getStatusFromConditions = (conditions?: Condition[]): StatusType =>
8
return relevant?.status === 'True' ? 'OK' : 'ERROR';
9
};
10
11
-export const resolveProviderType = (configName: string, providerConfigsList : ProviderConfig[]): string => {
+export const resolveProviderType = (configName: string, providerConfigsList: ProviderConfig[]): string => {
12
for (const configList of providerConfigsList || []) {
13
const match = configList.items?.find((item) => item.metadata?.name === configName);
14
0 commit comments