Skip to content

Commit a8639ea

Browse files
author
jdv
committed
no hierarchical list anymore, it's bugged
1 parent 827a505 commit a8639ea

File tree

2 files changed

+1
-35
lines changed

2 files changed

+1
-35
lines changed

crowdsec-docs/src/components/HierarchicalList.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ const HierarchicalList = ({ data = [] }) => {
88
};
99

1010
return (
11-
<div className="p-6 max-w-4xl mx-auto">
12-
<h2 className="text-2xl font-bold mb-6 text-gray-800">Hierarchical List Example</h2>
13-
11+
<div className="p-6 max-w-4xl mx-auto">
1412
{/* Main list */}
1513
<div className="flex items-center flex-wrap gap-2 mb-4">
1614
{data.map((item, index) => (

crowdsec-docs/unversioned/getting_started/healthcheck.mdx

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -13,38 +13,6 @@ Welcome to the interactive health check of your CrowdSec setup. We'll have a Top
1313
First, check the proper functioning of the Security Engine's finality: **Detecting** AND **Protecting** against attacks.
1414
Then, eventually, diving into troubleshooting any issue you may encounter.
1515

16-
export const diagnosticData = [
17-
{
18-
id: 1,
19-
label: 'Detection',
20-
color: 'bg-blue-500',
21-
children: [
22-
{ id: 11, label: 'Detection checks', color: 'bg-blue-300' },
23-
{ id: 12, label: 'Troubleshooting', color: 'bg-blue-300' }
24-
]
25-
},
26-
{
27-
id: 2,
28-
label: 'Connectivity',
29-
color: 'bg-green-500',
30-
children: [
31-
{ id: 21, label: 'Connectivity checks', color: 'bg-green-300' },
32-
{ id: 22, label: 'Troubleshooting', color: 'bg-green-300' }
33-
]
34-
},
35-
{
36-
id: 3,
37-
label: 'Remediation',
38-
color: 'bg-purple-500',
39-
children: [
40-
{ id: 31, label: 'Remediation checks', color: 'bg-purple-300' },
41-
{ id: 32, label: 'Troubleshooting', color: 'bg-purple-300' }
42-
]
43-
}
44-
];
45-
46-
<HierarchicalList data={diagnosticData} />
47-
4816
## 📡 Detection checks
4917

5018
*Trigger CrowdSec's test scenarios*

0 commit comments

Comments
 (0)