Skip to content

Commit 139d61e

Browse files
committed
defaults
1 parent 34e535b commit 139d61e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/dashboard/StudyBrowserHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ qx.Class.define("osparc.dashboard.StudyBrowserHeader", {
201201
cursor: "auto",
202202
});
203203
} else if (currentContext === "trash") {
204-
this.__setIcon("@FontAwesome5Solid/trash/24");
204+
this.__setIcon("@FontAwesome5Solid/trash/20");
205205
const trashDays = osparc.store.StaticInfo.getInstance().getTrashRetentionDays();
206206
title.set({
207207
value: this.tr(`Trash: Items in the bin will be permanently deleted after ${trashDays} days.`),

services/static-webserver/client/source/class/osparc/store/StaticInfo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ qx.Class.define("osparc.store.StaticInfo", {
7676
if (key in wsStaticData) {
7777
return wsStaticData[key];
7878
}
79-
return null;
79+
return "unknown";
8080
},
8181

8282
getAccountDeletionRetentionDays: function() {

0 commit comments

Comments
 (0)