Skip to content

Commit

Permalink
style(nav): remove icons from submenu items
Browse files Browse the repository at this point in the history
  • Loading branch information
strahe committed Jan 31, 2025
1 parent 4dbd852 commit 0c0ae7b
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions ui/src/layouts/sidebar/sidebarItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
IconBrandAsana,
IconBuildingStore,
IconChartHistogram,
IconPointFilled,
IconCurrency,
IconDatabase,
IconHome,
Expand All @@ -12,7 +11,6 @@ import {
IconSettings,
IconUsers,
IconVector,
IconFilterPin,
} from '@tabler/icons-vue'
import { RouteLocationAsPathGeneric, RouteLocationAsRelativeGeneric } from 'vue-router'

Expand Down Expand Up @@ -107,18 +105,15 @@ const sidebarItems: menuItem[] = [
children: [
{
title: 'Balances',
to: { name: "MarketBalances" },
icon: IconPointFilled,
to: { name: "MarketBalances" }
},
{
title: 'Storage Asks',
to: { name: "StorageAsks" },
icon: IconPointFilled,
to: { name: "StorageAsks" }
},
{
title: 'Price Filter',
to: { name: "PriceFilter" },
icon: IconFilterPin,
to: { name: "PriceFilter" }
},
]
},
Expand Down

0 comments on commit 0c0ae7b

Please sign in to comment.