fix version error

This commit is contained in:
maurizio vitale
2019-12-12 20:11:44 +00:00
parent 5bd75a8295
commit 89de7393d2

View File

@@ -175,9 +175,9 @@ export class FormCloudService extends BaseCloudService {
const url = `${this.getBasePath(appName)}/form/v1/forms/${formKey}`; const url = `${this.getBasePath(appName)}/form/v1/forms/${formKey}`;
// blocked by the issue AAE-1218 // blocked by the issue AAE-1218
// if (version) { if (version) {
// url += `/versions/${version}`; // url += `/versions/${version}`;
// } }
return this.get(url); return this.get(url);
} }