0
Fork 0
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:
Gao Sun 2023-08-16 23:52:08 +08:00 committed by GitHub
parent 2901f43e64
commit e83208c259
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>