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 c5c019d commit 4582722Copy full SHA for 4582722
services/static-webserver/client/source/class/osparc/ui/basic/DateAndBy.js
@@ -87,7 +87,13 @@ qx.Class.define("osparc.ui.basic.DateAndBy", {
87
__applyGroupId: function(groupId) {
88
if (groupId) {
89
const atom = this.getChildControl("last-touching");
90
+ const myGroupId = osparc.auth.Data.getInstance().getGroupId();
91
+ if (groupId === myGroupId) {
92
+ atom.setLabel("by me");
93
+ } else {
94
+ atom.setLabel("by");
95
osparc.dashboard.CardBase.addHintFromGids(atom, [groupId]);
96
+ }
97
}
98
},
99
0 commit comments