fix(ui): follow-up polish — icons, dashboard bar, filter redesign, bounty/creds sort
- Dashboard: fix invisible bar at bottom of LIVE FEED by constraining max-height on the section instead of the inner container; same fix for side panels - Page icons: add violet-accent icon beside h1 on all 9 missing pages (CanaryTokens, RealismConfig, SyntheticFiles, PersonaGeneration, Attackers, Webhooks, LiveLogs, Topologies, DecoyFleet) - Attackers filter chips: replace ad-hoc chip buttons with seg-group tabs (ALL / ACTIVE N / PASSIVE N / INACTIVE N) matching Credential Vault style; country chips use same seg-group treatment - Credential Vault: add sortable headers to REUSE tab (LAST SEEN, PRINCIPAL, KIND, TARGETS, ATTEMPTS); reuses same SortTh pattern - Bounty: remove CREDENTIALS and PAYLOADS tabs; keep ALL, ARTIFACTS, FINGERPRINTS; add EMAIL (artifact subtype, filtered client-side)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import React, { useEffect, useMemo, useState } from 'react';
|
||||
import api from '../../utils/api';
|
||||
import { useToast } from '../Toasts/useToast';
|
||||
import { Save, RotateCcw, AlertTriangle } from '../../icons';
|
||||
import { Save, RotateCcw, AlertTriangle, Sliders } from '../../icons';
|
||||
import { contentClassLabel, isCanaryClass } from '../../realism/labels';
|
||||
// Reuse the DeckyFleet shell (page-header / btn / fleet-* / dim / mono) and
|
||||
// the persona-page tweaks (info-banner, .input) so the realism config panel
|
||||
@@ -168,7 +168,10 @@ const RealismConfig: React.FC = () => {
|
||||
<div className="fleet-root realism-config-root">
|
||||
<div className="page-header">
|
||||
<div className="page-title-group">
|
||||
<h1>REALISM CONFIG</h1>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: 12 }}>
|
||||
<Sliders size={22} className="violet-accent" />
|
||||
<h1>REALISM CONFIG</h1>
|
||||
</div>
|
||||
<span className="page-sub">
|
||||
USER {totals.user} · SYSTEM {totals.system} · CANARY {totals.canary} ·
|
||||
{' '}CANARY PROB {(config.canary_probability * 100).toFixed(1)}%
|
||||
|
||||
Reference in New Issue
Block a user