feat: Redesign bug reporting and header actions

- Remove BugReportTab component and move bug reporting to header
- Add bug report icon to main header and profile dropdown
- Add sync button to main header with deploy button styling
- Remove duplicate sync/bug report buttons from workbench header
- Clean up unused imports and code
- Improve header button organization and visibility
This commit is contained in:
Stijnus
2025-08-31 15:44:33 +02:00
parent b88eb6ee15
commit 7072600b50
7 changed files with 99 additions and 957 deletions

View File

@@ -12,7 +12,6 @@ export const TAB_ICONS: Record<TabType, string> = {
connection: 'i-ph:wifi-high',
'event-logs': 'i-ph:list-bullets',
mcp: 'i-ph:wrench',
'bug-report': 'i-ph:bug',
};
export const TAB_LABELS: Record<TabType, string> = {
@@ -27,7 +26,6 @@ export const TAB_LABELS: Record<TabType, string> = {
connection: 'Connection',
'event-logs': 'Event Logs',
mcp: 'MCP Servers',
'bug-report': 'Bug Report',
};
export const TAB_DESCRIPTIONS: Record<TabType, string> = {
@@ -42,7 +40,6 @@ export const TAB_DESCRIPTIONS: Record<TabType, string> = {
connection: 'Check connection status and settings',
'event-logs': 'View system events and logs',
mcp: 'Configure MCP (Model Context Protocol) servers',
'bug-report': 'Report bugs and issues directly to developers',
};
export const DEFAULT_TAB_CONFIG = [
@@ -55,7 +52,7 @@ export const DEFAULT_TAB_CONFIG = [
{ id: 'notifications', visible: true, window: 'user' as const, order: 5 },
{ id: 'event-logs', visible: true, window: 'user' as const, order: 6 },
{ id: 'mcp', visible: true, window: 'user' as const, order: 7 },
{ id: 'bug-report', visible: true, window: 'user' as const, order: 8 },
{ id: 'profile', visible: true, window: 'user' as const, order: 9 },
{ id: 'service-status', visible: true, window: 'user' as const, order: 10 },
{ id: 'settings', visible: true, window: 'user' as const, order: 11 },