Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(github): troubleshooting github-actions #4189

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![The Swiss Post Design System pattern library for a unified and accessible user experience across the web platform](https://github.com/swisspost/design-system/assets/1659006/e58acc52-3e6a-47b3-84b5-0726250ec225)

## Documentation
## Documentation of the Project

[Documentation](https://design-system.post.ch) - Technical implementation guidelines

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@ import { checkEmptyOrUrl } from '@/utils';
shadow: true,
})
export class PostBreadcrumbItem {
@Element() host: HTMLPostBreadcrumbItemElement;

/**
* The optional URL to which the breadcrumb item will link.
*/
@Element() host: HTMLPostBreadcrumbItemElement;

@Prop() url?: string | URL;

private validUrl?: string;
private validUrl?: string = 'Hello Tim';

@Watch('url')
validateUrl() {
Expand Down Expand Up @@ -57,4 +54,4 @@ export class PostBreadcrumbItem {
</Host>
);
}
}
}
Loading