Commit 4bfd3e3b authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Merge branch 'hotfix-wizardSubmitAnonymousError' into 'dev'

Hotfix wizard submit anonymous error

See merge request redmic-project/client/web!19
parents 9e665676 c52af75e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{
  "name": "REDMIC",
  "version": "0.11.3",
  "version": "0.11.4",
  "author": "Observatorio Ambiental Granadilla",
  "homepage": "https://redmic.es",
  "description": "Integrated marine data repository of Canary Islands - Client",
+3 −3
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ define([

		constructor: function (args) {

			this.config = {
			this.mainConfig = {
				mainActions: {
					DESERIALIZE: "deserialize",
					VALIDATION_ERRORS_CHANGED: "validationErrorsChanged",
@@ -34,7 +34,7 @@ define([
				pathSeparator: "."
			};

			lang.mixin(this, this.config, args);
			lang.mixin(this, this.mainConfig, args);

			aspect.before(this, "_beforeShow", this._beforeShowController);
		},
@@ -397,7 +397,7 @@ define([
			// TODO: este atributo es propio de steps, y esto no es un step, ojo
			this._results = [];
			this._resultsByIdProperty = {};
			this._totalSelected = this.config._totalSelected;
			this._totalSelected = this.mainConfig._totalSelected;

			this.form && this._publish(this.form.getChannel("CLEAR"));
			this._publish(this.browser.getChildChannel("browser", "CLEAR"));