From 4cb3c868a2dc5610e56fc563d3dc8cd2b130087a Mon Sep 17 00:00:00 2001 From: Odei Maiz Date: Tue, 8 Aug 2023 17:48:02 +0200 Subject: [PATCH] minors --- .../source/class/osparc/desktop/wallets/WalletDetails.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/services/static-webserver/client/source/class/osparc/desktop/wallets/WalletDetails.js b/services/static-webserver/client/source/class/osparc/desktop/wallets/WalletDetails.js index a0784751b3f..c2996ee80b9 100644 --- a/services/static-webserver/client/source/class/osparc/desktop/wallets/WalletDetails.js +++ b/services/static-webserver/client/source/class/osparc/desktop/wallets/WalletDetails.js @@ -109,7 +109,7 @@ qx.Class.define("osparc.desktop.wallets.WalletDetails", { __updateWallet: function(win, button, walletEditor) { const walletId = walletEditor.getWalletId(); - const name = walletEditor.getLabel(); + const name = walletEditor.getName(); const description = walletEditor.getDescription(); const thumbnail = walletEditor.getThumbnail(); const params = { @@ -129,9 +129,8 @@ qx.Class.define("osparc.desktop.wallets.WalletDetails", { osparc.store.Store.getInstance().invalidate("wallets"); const store = osparc.store.Store.getInstance(); store.reloadWallets(); - // OM: Check this this.__walletModel.set({ - label: name, + name: name, description: description, thumbnail: thumbnail || null });