Skip to content

Commit

Permalink
defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz committed Oct 24, 2024
1 parent 34e535b commit 139d61e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ qx.Class.define("osparc.dashboard.StudyBrowserHeader", {
cursor: "auto",
});
} else if (currentContext === "trash") {
this.__setIcon("@FontAwesome5Solid/trash/24");
this.__setIcon("@FontAwesome5Solid/trash/20");
const trashDays = osparc.store.StaticInfo.getInstance().getTrashRetentionDays();
title.set({
value: this.tr(`Trash: Items in the bin will be permanently deleted after ${trashDays} days.`),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ qx.Class.define("osparc.store.StaticInfo", {
if (key in wsStaticData) {
return wsStaticData[key];
}
return null;
return "unknown";
},

getAccountDeletionRetentionDays: function() {
Expand Down

0 comments on commit 139d61e

Please sign in to comment.