Skip to content

Commit

Permalink
fix(comp:tour): step title should be optional (#1628)
Browse files Browse the repository at this point in the history
  • Loading branch information
sallerli1 committed Aug 11, 2023
1 parent 97bdafb commit ecd1b7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/seer.less
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
@import './timeline/style/themes/seer.less';
@import './transfer/style/themes/seer.less';
@import './tooltip/style/themes/seer.less';
@import './tour/style/themes/default.less';
@import './tour/style/themes/seer.less';
@import './tree/style/themes/seer.less';
@import './tree-select/style/themes/seer.less';
@import './typography/style/themes/seer.less';
Expand Down
2 changes: 1 addition & 1 deletion packages/components/tour/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface TourMaskOptions {
export type TargetGetter = () => MaybeElement | null | Promise<MaybeElement | null>

export interface TourStep {
title: string
title?: string
description?: string
gap?: number | TargetGap
mask?: boolean | TourMaskOptions
Expand Down

0 comments on commit ecd1b7c

Please sign in to comment.