info
git revision / version: v0.4.6, commit 7775d97
OS: OpenBSD 7.4
Architecture: amd64
problem
Expected behaviour: When a torrent is being downloaded, the associated progress bar in the webui starts white and fills with blue, until it is completely filled, indicating that the torrent is downloaded.
Observations: This is not true when the progress is exactly 0%. In this case, the bar starts completely blue. Only when the progress increases above 0% does the expected behaviour occur.
further observations
What I found so far is that the bars behaving correctly have a value attribute in their progress tag. For example:
<progress data-bind="value: $data.Progress" max="100" value="100"></progress>
Those with a progress of 0% have no value, which seems to render the bar filled by default. For example:
<progress data-bind="value: $data.Progress" max="100"></progress>
I didn't find why this is happening.
info
git revision / version: v0.4.6, commit 7775d97
OS: OpenBSD 7.4
Architecture: amd64
problem
Expected behaviour: When a torrent is being downloaded, the associated progress bar in the webui starts white and fills with blue, until it is completely filled, indicating that the torrent is downloaded.
Observations: This is not true when the progress is exactly 0%. In this case, the bar starts completely blue. Only when the progress increases above 0% does the expected behaviour occur.
further observations
What I found so far is that the bars behaving correctly have a
valueattribute in theirprogresstag. For example:Those with a progress of 0% have no
value, which seems to render the bar filled by default. For example:I didn't find why this is happening.