question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

<Progress isIndeterminate /> is not working

See original GitHub issue

🐛 Bug report

<Progress isInderterminate/> is not working (even on the documentation page https://chakra-ui.com/docs/feedback/progress#animated-progress)

💥 Steps to reproduce

  1. <Progress isIndeterminate />
  2. nothing is shown

💻 Link to reproduction

Documentation link https://chakra-ui.com/docs/feedback/progress#animated-progress

🧐 Expected behavior

Should show progress flashing

🌍 System information

Software Version(s)
Chakra UI ^1.6.2
Browser Firefox
Operating System MacOS

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:1
  • Comments:12 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
prescottbreedencommented, May 24, 2021

Are these changes published yet? Still happening for me on @latest (1.6.2) even tho I see it’s working in the docs

1reaction
mwmcodecommented, May 20, 2021

I think I found the cause. in packages/styled-system/src/utils/transform-functions.ts

return isString(value) && !value.startsWith("url") ? `url(${value})` : value

should be

return isString(value) && value.startsWith("url") ? `url(${value})` : value

@segunadebayo can you please 👀

Read more comments on GitHub >

github_iconTop Results From Across the Web

Indeterminate progress bar not animating - Stack Overflow
Dispatcher.Invoke executes your timeConsumingMethod delegate on the UI thread so it will be blocked. Try this instead in an async method:
Read more >
ProgressBar.IsIndeterminate Property - Microsoft Learn
Gets or sets whether the ProgressBar shows actual values or generic, continuous progress feedback.
Read more >
Using XAML Progress Bar in WPF for Indeterminate Mode
Long running tasks in any application make the application or software irresponsive. So to keep the user updated about the running task and...
Read more >
The Progress Indicator element - HTML - MDN Web Docs
The HTML element displays an indicator showing the completion ... If there is no value attribute, the progress bar is indeterminate; ...
Read more >
IsIndeterminate - WPF ProgressBar - Documentation
Indeterminate - aimed at scenarios in which there is no way of determining the current progress of an operation. The IsIndeterminate property specifies ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found