Revert to network (graph) icon for GUI editor tabs (#11759)

Revert icon to the original icon for GUI editor tabs

# Important Notes
None
This commit is contained in:
somebody1234 2024-12-05 21:02:20 +10:00 committed by GitHub
parent 984aeb9671
commit 8eddcff262
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
/** @file The tab bar for the dashboard page. */
import DriveIcon from '#/assets/drive.svg'
import NetworkIcon from '#/assets/network.svg'
import SettingsIcon from '#/assets/settings.svg'
import WorkspaceIcon from '#/assets/workspace.svg'
import { useEventCallback } from '#/hooks/eventCallbackHooks'
import TabBar from '#/layouts/TabBar'
@ -59,7 +59,7 @@ export function DashboardTabBar(props: DashboardTabBarProps) {
(project) =>
({
id: project.id,
icon: WorkspaceIcon,
icon: NetworkIcon,
'data-testid': 'editor-tab-button',
labelId: 'editorPageName' satisfies TextId,
// There is no shared enum type, but the other union member is the same type.