Skip to content

Commit

Permalink
refactor(sidebar): replace doc icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mydearxym committed Sep 24, 2023
1 parent 658a31a commit da532b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/containers/thread/DashboardThread/store/Models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const settingsModalFields = {
docFaqLayout: T.opt(T.enum(values(DOC_FAQ_LAYOUT)), DOC_FAQ_LAYOUT.COLLAPSE),
avatarLayout: T.opt(T.enum(values(AVATAR_LAYOUT)), AVATAR_LAYOUT.SQUARE),
brandLayout: T.opt(T.enum(values(BRAND_LAYOUT)), BRAND_LAYOUT.BOTH),
bannerLayout: T.opt(T.enum(values(BANNER_LAYOUT)), BANNER_LAYOUT.TABBER),
bannerLayout: T.opt(T.enum(values(BANNER_LAYOUT)), BANNER_LAYOUT.SIDEBAR),
topbarLayout: T.opt(T.enum(values(TOPBAR_LAYOUT)), TOPBAR_LAYOUT.NO),
topbarBg: T.opt(T.enum(keys(COLORS)), COLOR_NAME.ORANGE),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import HomeSVG from '@/icons/Home'
import DiscussSVG from '@/icons/Discuss'
import TadaSVG from '@/icons/TadaRaw'
import InfoSVG from '@/icons/Info'
import GuideSVG from '@/icons/Guide'
import GuideSVG from '@/icons/Book'

import { MenuItem } from './main_menu'

Expand Down Expand Up @@ -45,7 +45,7 @@ export const Icon = {
Kanban: styled(getIcon(KanbanSVG, 16))`
transform: rotate(180deg);
`,
Guide: getIcon(GuideSVG, 12),
Guide: getIcon(GuideSVG),
Info: styled(getIcon(InfoSVG, 13))`
margin-left: 1px;
margin-bottom: 1px;
Expand Down

0 comments on commit da532b3

Please sign in to comment.