diff --git a/frontend/src/components/dashboard/ConfigurationStatus.tsx b/frontend/src/components/dashboard/ConfigurationStatus.tsx
index 98b59ca6..a0856acf 100644
--- a/frontend/src/components/dashboard/ConfigurationStatus.tsx
+++ b/frontend/src/components/dashboard/ConfigurationStatus.tsx
@@ -11,17 +11,17 @@ interface ConfigurationStatusProps {
function StatusBadge({ value }: { value: string }) {
const lower = value.toLowerCase();
- if (lower === 'on' || lower === 'enabled') {
+ if (lower === 'on' || lower === 'enabled' || lower === 'installed') {
return (
- ON
+ {lower === 'installed' ? 'INSTALLED' : 'ON'}
);
}
- if (lower === 'off' || lower === 'disabled') {
+ if (lower === 'off' || lower === 'disabled' || lower === 'not installed') {
return (
- OFF
+ {lower === 'not installed' ? 'NOT INSTALLED' : 'OFF'}
);
}
@@ -195,7 +195,10 @@ export function ConfigurationStatus({ onOpenSection }: ConfigurationStatusProps
window.dispatchEvent(
+ new CustomEvent(SENCHO_NAVIGATE_EVENT, { detail: { view: 'security', tab: 'scanner' } }),
+ )}
/>
{!security.scanPolicies.locked && (
|