-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
MatProgressBar _rectangleFillValue didn't display when routing is using hash #12710
Comments
query mode is currently broken, was solved by #11459 Should be released on next patch most likely |
query mode is likely indeterminate mode, if just set:
it's simple to implement |
…location strategy Fixes the progress bar prefixing the references incorrectly when the consumer is using the router's hash location strategy. The issue comes from the fact that the router normalizes the `location.pathname` between the regular strategy and the hash one, whereas we need to use the exact same path as the `window.location`. Fixes angular#12710.
…location strategy Fixes the progress bar prefixing the references incorrectly when the consumer is using the router's hash location strategy. The issue comes from the fact that the router normalizes the `location.pathname` between the regular strategy and the hash one, whereas we need to use the exact same path as the `window.location`. Fixes angular#12710.
…location strategy (#12713) Fixes the progress bar prefixing the references incorrectly when the consumer is using the router's hash location strategy. The issue comes from the fact that the router normalizes the `location.pathname` between the regular strategy and the hash one, whereas we need to use the exact same path as the `window.location`. Fixes #12710.
…location strategy (#12713) Fixes the progress bar prefixing the references incorrectly when the consumer is using the router's hash location strategy. The issue comes from the fact that the router normalizes the `location.pathname` between the regular strategy and the hash one, whereas we need to use the exact same path as the `window.location`. Fixes #12710.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
It‘s a Bug:
<mat-progress-bar [mode]='buffer'>
In the official website, it is normal.
but in my site:
u see, it’s blank!!!
In my router config, useHash is true, so my url is like:
http://localhost:9621/#/preview/home
This is the only point different from the official website.
I found the bug:



If I adjust it as follows:
It's worked!
What is the expected behavior?
To normal.
What is the current behavior?
MatProgressBar buffer mode is blank.
The text was updated successfully, but these errors were encountered: