Skip to content

Commit

Permalink
fix: Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzznya committed Mar 16, 2024
1 parent f51a0fc commit 461bc9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/views/ProjectResourcesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
} from "@/api/generated";
import { TypeImage, types } from "@/components/managedServices";
import { useDarkMode } from "@/dark-mode";
import { BaseColorVariant } from "bootstrap-vue-next";
const router = useRouter();
Expand Down Expand Up @@ -68,7 +69,7 @@ function getServiceStatusVariant(status: ServiceStatusStatusEnum) {
case ServiceStatusStatusEnum.Unhealthy:
return "danger";
default:
return "transparent";
return "transparent" as keyof BaseColorVariant;
}
}
Expand Down

0 comments on commit 461bc9d

Please sign in to comment.