@igea/oac_frontend 1.0.77 → 1.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igea/oac_frontend",
3
- "version": "1.0.77",
3
+ "version": "1.0.78",
4
4
  "description": "Frontend service for the OAC project",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -305,7 +305,8 @@ document.addEventListener('DOMContentLoaded', () => {
305
305
  newForm.dataset.shapeSubject="http://example.org/shapes/E7Activity01Shape";
306
306
 
307
307
  if(uuid){
308
- newForm.dataset.valuesUrl="/backend/ontology/form/" + uuid;
308
+ var rnd = (new Date()).getTime();
309
+ newForm.dataset.valuesUrl="/backend/ontology/form/" + uuid + "?rnd=" + rnd;
309
310
  newForm.dataset.valuesSubject="http://indagine/" + uuid;
310
311
  }
311
312