You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: I'm using the extension for all of my meetings, and it is crucial for me to quickly identify any open tasks. Currently, it's somewhat challenging to differentiate between having no tasks and having only open tasks, as both display "0%". The only distinction is a slight color variation in the progress bar.
Solution: Display "No progress to track" when there are no tasks to track (refer to screenshot)
The only change necessary was in the declaration of the shortText variable: const shortText = total === 0 ? `No progress to track.` : `${percentage}%`;