mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Small fixes [stage] [pre]
This commit is contained in:
parent
1a7a3637e6
commit
5a125bce9b
2 changed files with 5 additions and 5 deletions
|
@ -61,10 +61,10 @@ public class BrowserStatusBarComp extends SimpleComp {
|
|||
|| model.getProgress().getValue().done()) {
|
||||
return null;
|
||||
} else {
|
||||
return (model.getProgress().getValue().getName() != null
|
||||
? model.getProgress().getValue().getName() + " "
|
||||
: "")
|
||||
+ transferredCount.getValue() + " / " + allCount.getValue();
|
||||
var name = (model.getProgress().getValue().getName() != null
|
||||
? " @ " + model.getProgress().getValue().getName() + " "
|
||||
: "");
|
||||
return transferredCount.getValue() + " / " + allCount.getValue() + name;
|
||||
}
|
||||
},
|
||||
transferredCount,
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
8.0-10
|
||||
8.0-11
|
||||
|
|
Loading…
Reference in a new issue