fix(ui): remove AI Intelligence Summary - patrol findings are sufficient
The AI Intelligence Summary was adding noise rather than value: - Predictions duplicated patrol findings - Correlations were not actionable - 'Fixed' items were vague diagnostics - Status changes were startup noise The real value is in the patrol findings section which shows: - Actual issues found (critical/warning/watch/info) - Actionable recommendations - Suppression rules Keeping the patrol findings, removing the redundant summary.
This commit is contained in:
parent
c8a32a7131
commit
4780dd2f83
1 changed files with 247 additions and 248 deletions
|
|
@ -7,7 +7,7 @@ import { ThresholdsTable } from '@/components/Alerts/ThresholdsTable';
|
||||||
import { InvestigateAlertButton } from '@/components/Alerts/InvestigateAlertButton';
|
import { InvestigateAlertButton } from '@/components/Alerts/InvestigateAlertButton';
|
||||||
import type { RawOverrideConfig, PMGThresholdDefaults, SnapshotAlertConfig, BackupAlertConfig } from '@/types/alerts';
|
import type { RawOverrideConfig, PMGThresholdDefaults, SnapshotAlertConfig, BackupAlertConfig } from '@/types/alerts';
|
||||||
import { Card } from '@/components/shared/Card';
|
import { Card } from '@/components/shared/Card';
|
||||||
import { AIOverviewTable } from '@/components/shared/AIOverviewTable';
|
|
||||||
import { SectionHeader } from '@/components/shared/SectionHeader';
|
import { SectionHeader } from '@/components/shared/SectionHeader';
|
||||||
import { SettingsPanel } from '@/components/shared/SettingsPanel';
|
import { SettingsPanel } from '@/components/shared/SettingsPanel';
|
||||||
import { Toggle } from '@/components/shared/Toggle';
|
import { Toggle } from '@/components/shared/Toggle';
|
||||||
|
|
@ -2817,9 +2817,8 @@ function OverviewTab(props: {
|
||||||
</Show>
|
</Show>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-4">
|
{/* AI Intelligence Summary removed - patrol findings below provide the same value without noise */}
|
||||||
<AIOverviewTable showWhenEmpty />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Show when={patrolRequiresLicense()}>
|
<Show when={patrolRequiresLicense()}>
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue