Spaces:
Paused
Paused
fix: add missing Target/Video imports and threatIntel dataSource
Browse files- Add Target and Video icon imports to SocialWidgets.tsx
- Add threatIntel dataSource to SourceLink.tsx
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
apps/matrix-frontend/src/components/SourceLink.tsx
CHANGED
|
@@ -179,4 +179,11 @@ export const dataSources: Record<string, DataSource> = {
|
|
| 179 |
lastUpdated: new Date().toLocaleString('da-DK'),
|
| 180 |
description: 'Machine learning baserede analyser'
|
| 181 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
};
|
|
|
|
| 179 |
lastUpdated: new Date().toLocaleString('da-DK'),
|
| 180 |
description: 'Machine learning baserede analyser'
|
| 181 |
},
|
| 182 |
+
threatIntel: {
|
| 183 |
+
id: 'threat-intel',
|
| 184 |
+
name: 'Threat Intelligence Feed',
|
| 185 |
+
url: 'https://threatintel.cyberterm.io',
|
| 186 |
+
lastUpdated: new Date().toLocaleString('da-DK'),
|
| 187 |
+
description: 'Real-time trussel information og IOC feeds'
|
| 188 |
+
},
|
| 189 |
};
|
apps/matrix-frontend/src/components/widgets/mini/SocialWidgets.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import {
|
| 2 |
Bell, MessageSquare, Users, Star, Heart, Share2, Award, Trophy, Medal, Phone, XCircle,
|
| 3 |
-
Mail, Send, Edit, AlertCircle
|
| 4 |
} from 'lucide-react';
|
| 5 |
|
| 6 |
export const MiniNotifications = () => (
|
|
|
|
| 1 |
import {
|
| 2 |
Bell, MessageSquare, Users, Star, Heart, Share2, Award, Trophy, Medal, Phone, XCircle,
|
| 3 |
+
Mail, Send, Edit, AlertCircle, Target, Video
|
| 4 |
} from 'lucide-react';
|
| 5 |
|
| 6 |
export const MiniNotifications = () => (
|