bug(breadcrumbs): color attribute shows on DOM for Vue (#27040)

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
This commit is contained in:
Maria Hutt
2023-03-30 09:57:02 -07:00
committed by GitHub
parent 7864a21ca3
commit dd419c0066
6 changed files with 71 additions and 2 deletions

View File

@ -30,7 +30,7 @@ export class Breadcrumbs implements ComponentInterface {
* Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
* For more information on colors, see [theming](/docs/theming/basics).
*/
@Prop() color?: Color;
@Prop({ reflect: true }) color?: Color;
/**
* The maximum number of breadcrumbs to show before collapsing.