Skip to content

Commit 965064e

Browse files
committed
update learn dropdown icons
Signed-off-by: shmck <[email protected]>
1 parent 9e2d05a commit 965064e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: web-app/src/containers/Tutorial/index.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,15 @@ const TutorialPage = (props: PageProps) => {
6363
let disabled = false
6464

6565
if (isComplete) {
66-
icon = <Icon type="success" size="xs" />
66+
// completed icon
67+
icon = <Icon type="minus" size="xs" />
6768
} else if (isCurrent) {
68-
icon = <Icon type="eye" size="xs" />
69+
// current icon`
70+
icon = <Icon type="minus" size="xs" />
6971
} else {
72+
// upcoming
7073
disabled = true
71-
icon = <Icon type="minus" size="xs" />
74+
icon = <Icon type="lock" size="xs" />
7275
}
7376
return (
7477
<Menu.Item key={level.id} disabled={disabled} onSelect={() => setMenuContent(level.id)}>

0 commit comments

Comments
 (0)