mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
fix(console): add onClick handler to guide done button (#4345)
This commit is contained in:
parent
2901f43e64
commit
e83208c259
1 changed files with 6 additions and 1 deletions
|
@ -129,7 +129,12 @@ function GuideV2({ guideId, app, isCompact, onClose }: Props) {
|
||||||
</GuideContext.Provider>
|
</GuideContext.Provider>
|
||||||
<nav className={styles.actionBar}>
|
<nav className={styles.actionBar}>
|
||||||
<div className={styles.layout}>
|
<div className={styles.layout}>
|
||||||
<Button size="large" title="applications.guide.finish_and_done" type="primary" />
|
<Button
|
||||||
|
size="large"
|
||||||
|
title="applications.guide.finish_and_done"
|
||||||
|
type="primary"
|
||||||
|
onClick={onClose}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue