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

fix: make route matching more explicit #25

Merged
merged 1 commit into from
Jul 21, 2020
Merged

Conversation

brandonroberts
Copy link
Collaborator

Closes #18

BREAKING CHANGE:

Removes usage of /** pattern for parent and wildcard routes

BEFORE:

  <route path="/books/**"></route>

AFTER:

  <route path="/books" [exact]="false">

BREAKING CHANGE:

Removes usage of `/**` pattern for parent and wildcard routes

BEFORE:

```html
  <route path="/books/**"></route>
```

AFTER:

```html
  <route path="/books" [exact]="false">
```
@brandonroberts brandonroberts merged commit 3b8716b into master Jul 21, 2020
@brandonroberts brandonroberts deleted the fix-route-matching branch July 21, 2020 00:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug] Nested routes do not abide 404
1 participant