Skip to content

Commit 3ef931e

Browse files
authored
Disable cache when reloading studies (#1844)
1 parent 1dbe022 commit 3ef931e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/web/client/source/class/osparc/component/sweeper/Iterations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ qx.Class.define("osparc.component.sweeper.Iterations", {
9494
const combinations = this.__primaryStudy.getSweeper().getCombinations();
9595
const secondaryStudyIds = this.__primaryStudy.getSweeper().getSecondaryStudyIds();
9696
if (combinations.length === secondaryStudyIds.length) {
97-
osparc.data.Resources.get("studies")
97+
osparc.data.Resources.get("studies", null, false)
9898
.then(studies => {
9999
const rows = [];
100100
for (let i=0; i<secondaryStudyIds.length; i++) {

services/web/client/source/class/osparc/dashboard/StudyBrowser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
105105
*/
106106
reloadUserStudies: function() {
107107
if (osparc.data.Permissions.getInstance().canDo("studies.user.read")) {
108-
osparc.data.Resources.get("studies")
108+
osparc.data.Resources.get("studies", null, false)
109109
.then(studies => {
110110
this.__resetStudyList(studies);
111111
this.resetSelection();

0 commit comments

Comments
 (0)