Fix incorrect logo appearing for Standard License holders (#2797)

This commit is contained in:
Kaan Kabalak
2023-05-01 13:50:01 -07:00
committed by GitHub
parent 90c8ea7f09
commit 211ab3fd9d

View File

@@ -25,11 +25,11 @@ type LogoVar = "simple" | "AGPL" | "standard" | "enterprise";
export const getLogoVar = (): LogoVar => {
let logoVar: LogoVar = "AGPL";
switch (MinIOPlan) {
switch (MinIOPlan.toLowerCase()) {
case "enterprise":
logoVar = "enterprise";
break;
case "STANDARD":
case "standard":
logoVar = "standard";
break;
default: