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 c8a1c1c commit ebf8d67Copy full SHA for ebf8d67
services/static-webserver/client/source/class/osparc/dashboard/StudyBrowser.js
@@ -1517,9 +1517,9 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
1517
if (idx > -1) {
1518
this._resourcesList[idx]["state"] = state;
1519
}
1520
- const studyItem = this._resourcesContainer.getCards().find(card => osparc.dashboard.ResourceBrowserBase.isCardButtonItem(card) && card.getUuid() === studyId);
1521
- if (studyItem) {
1522
- studyItem.setState(state);
+ const studyCard = this._resourcesContainer.getCards().find(card => osparc.dashboard.ResourceBrowserBase.isCardButtonItem(card) && card.getUuid() === studyId);
+ if (studyCard) {
+ studyCard.setState(state);
1523
1524
},
1525
0 commit comments