fix: don't cache ajax request on course details page in Studio

Caching this was making the browser render a JSON with this request because of
the Backbone.js router.
This commit is contained in:
0x29a
2021-06-18 05:38:35 +02:00
committed by Piotr Surowiec
parent f0d319ee12
commit 586add5f7d

View File

@@ -34,7 +34,8 @@ define([
editor.useV2CertDisplaySettings = useV2CertDisplaySettings;
editor.render();
},
reset: true
reset: true,
cache: false
});
};
});