Skip to content

Commit

Permalink
Removed string from target types.
Browse files Browse the repository at this point in the history
  • Loading branch information
itsJohnnyGrid committed Jan 24, 2025
1 parent 95af461 commit e4d1ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui.button-link/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export interface Props {
/**
* Specifies where to open the linked page.
*/
target?: "_blank" | "_self" | "_parent" | "_top" | string;
target?: "_blank" | "_self" | "_parent" | "_top";

/**
* A rel attribute value to apply on the external link.
Expand Down
2 changes: 1 addition & 1 deletion src/ui.navigation-breadcrumbs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export interface Props {
/**
* Specifies where to open the linked page.
*/
target?: "_blank" | "_self" | "_parent" | "_top" | string;
target?: "_blank" | "_self" | "_parent" | "_top";

/**
* Show underline.
Expand Down

0 comments on commit e4d1ec9

Please sign in to comment.