GUI Activities pane is empty?

My Dashboard->Activities pane is completely blank, this was not the case just a few days ago. It seems that this is related to 1.7.0 update which I did in this timeframe, but it could be something else I did (?). I don’t see anything interesting in the log, and there are plenty of nonempty .stats under stats/schedules. What could the problem be?

Open one of the .stats file under stats/schedules to see if it is a valid json array. Each array element should represent a job run. Also open the source of the Dashboard page and check if each json element is added to an array called “items”.

Oh, I think I see what the problem is, it is indeed 1.7.0 thing (renaming localhost-xxx schedules?). Here is the JS part that is failing:

 var groups = new vis.DataSet([
...
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },            
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },            
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },            
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },            
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },            
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },           
                { id: "NAS1-\u003eODrive01", content: "NAS1\u003ci class=\"fa fa-arrow-right\"\u003e\u003c/i\u003eODrive01" },
...
        ]);

Ids in the datasets are supposed to be unique, and in my case, they’re not, so this part throws an exception.

@gchen, any chance for that to be fixed? This should be a rather simple fix, but we don’t have access to the GUI code…

I’ll make a new release Monday morning.

I found this was related to browser zoom level;
Zoom in from normal, pane is blank
Zoom to normal, pane is populated

This has been fixed in 1.7.2: Duplicacy Web Edition 1.7.2 releases

1 Like

Can confirm, the issue is resolved in 1.7.2. Thanks.