diff --git a/src/PowderCoating.Web/Views/Companies/Details.cshtml b/src/PowderCoating.Web/Views/Companies/Details.cshtml
index 3f6c9fd..a2d36be 100644
--- a/src/PowderCoating.Web/Views/Companies/Details.cshtml
+++ b/src/PowderCoating.Web/Views/Companies/Details.cshtml
@@ -459,7 +459,7 @@
-
+
@{
var (obBadge, obLabel) = onboarding.Status switch {
OnboardingStatus.Complete => ("bg-success", "Complete"),
@@ -468,10 +468,16 @@
_ => ("bg-light text-dark border", "Not Started")
};
}
- @obLabel
+
+ Status:
+ @obLabel
+
@if (!string.IsNullOrEmpty(onboarding.OnboardingPath))
{
- @onboarding.OnboardingPath
+
+ Path:
+ @onboarding.OnboardingPath
+
}