Skip to content

Commit

Permalink
fix(sidebar): small typo on the 'Coming' badge and property name (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
sglza committed Nov 21, 2023
1 parent ab27ac0 commit 644f5b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/Layout/SideBarDocs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ const BADGE_TYPES: BadgeTypes = {
label: 'UPDATED',
variant: 'info'
},
cooming: {
label: 'COOMING',
coming: {
label: 'COMING',
variant: 'warning'
},
deprecated: {
Expand Down Expand Up @@ -353,7 +353,7 @@ export const components: ComponentObjectProps = {
{
label: 'FeedBackBox',
pathname: 'feed-back-box',
badge: BADGE_TYPES.cooming
badge: BADGE_TYPES.coming
},
{
label: 'Filter Date',
Expand All @@ -368,12 +368,12 @@ export const components: ComponentObjectProps = {
{
label: 'Select Multi',
pathname: 'select-multi',
badge: BADGE_TYPES.cooming
badge: BADGE_TYPES.coming
},
{
label: 'Language',
pathname: 'language',
badge: BADGE_TYPES.cooming
badge: BADGE_TYPES.coming
},
{
label: 'Confirm Dialog',
Expand Down Expand Up @@ -432,7 +432,7 @@ export default function SideBarDocs({
key={key}
>
{value.items.map((item) => {
const isTabDisabled = item.badge === BADGE_TYPES.cooming
const isTabDisabled = item.badge === BADGE_TYPES.coming
const childrenTab = (
<>
<Text
Expand Down

0 comments on commit 644f5b7

Please sign in to comment.