We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfc131a commit 409a62cCopy full SHA for 409a62c
services/static-webserver/client/source/class/osparc/ui/basic/DateAndBy.js
@@ -96,9 +96,12 @@ qx.Class.define("osparc.ui.basic.DateAndBy", {
96
const atom = this.getChildControl("last-touching");
97
const myGroupId = osparc.auth.Data.getInstance().getGroupId();
98
if (groupId === myGroupId) {
99
- atom.setLabel("by me");
+ atom.set({
100
+ label: "by me",
101
+ icon: null,
102
+ })
103
} else {
- atom.setLabel("by");
104
+ atom.setLabel("by ");
105
osparc.dashboard.CardBase.addHintFromGids(atom, [groupId]);
106
}
107
0 commit comments