Skip to content

Commit 9353741

Browse files
committed
default cursor
1 parent 4495c5f commit 9353741

File tree

6 files changed

+18
-1
lines changed

6 files changed

+18
-1
lines changed

services/static-webserver/client/source/class/osparc/desktop/organizations/MembersList.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ qx.Class.define("osparc.desktop.organizations.MembersList", {
156156
ctrl.bindProperty("showOptions", "showOptions", null, item, id);
157157
},
158158
configureItem: item => {
159+
item.set({
160+
cursor: "default",
161+
});
159162
item.subscribeToFilterGroup("organizationMembersList");
160163
item.getChildControl("thumbnail").setDecorator("circled");
161164
item.addListener("promoteToMember", e => {

services/static-webserver/client/source/class/osparc/desktop/organizations/ServicesList.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ qx.Class.define("osparc.desktop.organizations.ServicesList", {
8383
}, item, id);
8484
},
8585
configureItem: item => {
86+
item.set({
87+
cursor: "default",
88+
});
8689
item.subscribeToFilterGroup("organizationServicesList");
8790
item.addListener("openMoreInfo", e => {
8891
const serviceKey = e.getData()["key"];

services/static-webserver/client/source/class/osparc/desktop/organizations/TutorialsList.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ qx.Class.define("osparc.desktop.organizations.TutorialsList", {
8282
}, item, id);
8383
},
8484
configureItem: item => {
85+
item.set({
86+
cursor: "default",
87+
});
8588
item.subscribeToFilterGroup("organizationTutorialsList");
8689
item.addListener("openMoreInfo", e => {
8790
const templateId = e.getData()["key"];

services/static-webserver/client/source/class/osparc/desktop/paymentMethods/PaymentMethods.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,9 @@ qx.Class.define("osparc.desktop.paymentMethods.PaymentMethods", {
195195
ctrl.bindProperty("expirationYear", "expirationYear", null, item, id);
196196
},
197197
configureItem: item => {
198+
item.set({
199+
cursor: "default",
200+
});
198201
item.addListener("openPaymentMethodDetails", e => this.__openPaymentMethodDetails(e.getData()));
199202
item.addListener("deletePaymentMethod", e => this.__deletePaymentMethod(e.getData()));
200203
}

services/static-webserver/client/source/class/osparc/desktop/wallets/MembersList.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ qx.Class.define("osparc.desktop.wallets.MembersList", {
144144
ctrl.bindProperty("showOptions", "showOptions", null, item, id);
145145
},
146146
configureItem: item => {
147+
item.set({
148+
cursor: "default",
149+
});
147150
item.subscribeToFilterGroup("walletMembersList");
148151
item.getChildControl("thumbnail").setDecorator("circled");
149152
item.addListener("promoteToAccountant", e => {

services/static-webserver/client/source/class/osparc/desktop/wallets/WalletsList.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,10 @@ qx.Class.define("osparc.desktop.wallets.WalletsList", {
115115
ctrl.bindProperty("autoRecharge", "autoRecharge", null, item, id);
116116
},
117117
configureItem: item => {
118+
item.set({
119+
cursor: "default",
120+
});
118121
item.subscribeToFilterGroup("walletsList");
119-
120122
item.addListener("openEditWallet", e => this.__openEditWallet(e.getData()));
121123
item.addListener("openShareWallet", e => this.__walletSelected(e.getData()));
122124
item.addListener("buyCredits", e => this.fireDataEvent("buyCredits", e.getData()));

0 commit comments

Comments
 (0)