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 90c8ea7 commit 211ab3fCopy full SHA for 211ab3f
portal-ui/src/config.ts
@@ -25,11 +25,11 @@ type LogoVar = "simple" | "AGPL" | "standard" | "enterprise";
25
26
export const getLogoVar = (): LogoVar => {
27
let logoVar: LogoVar = "AGPL";
28
- switch (MinIOPlan) {
+ switch (MinIOPlan.toLowerCase()) {
29
case "enterprise":
30
logoVar = "enterprise";
31
break;
32
- case "STANDARD":
+ case "standard":
33
logoVar = "standard";
34
35
default:
0 commit comments