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

Breadcrumb control: add the flag 'noLink' to display breadcrumb fragments as static text #35

Closed
wants to merge 2 commits into from

Conversation

lscorcia
Copy link

@lscorcia lscorcia commented Dec 7, 2018

Hello,
this pull request adds the following enhancements:

image

To use this, users would have to set the noLink property in their app.routing.ts file, e.g.:

...
{
    path: '',
    component: DefaultLayoutComponent,
    data: {
      title: 'Home'
    },
    children: [
      {
        path: 'base',
        data: { noLink: true },
        loadChildren: './views/base/base.module#BaseModule'
      },
      {
        path: 'buttons',
        loadChildren: './views/buttons/buttons.module#ButtonsModule'
      },
...

The modification itself is quite simple and probably noLink isn't the most intuitive of property names but feel free to change it if you find something better.

  • Removes build artifacts from the repository (makes diffs easier)

Thanks for your consideration and for your great work.

@github-actions
Copy link

github-actions bot commented May 3, 2022

This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant