Commit dacd2cde authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige edición, informes y descripción de error

parent 3da7c776
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -35,12 +35,14 @@ services:
        traefik.port: '${PORT}'
      restart_policy:
        delay: 10s
        window: 1m
      update_config:
        delay: 10s
      resources:
        limits:
          cpus: '1'
          memory: 128M
        reservations:
          cpus: '0.001'
          memory: 64M

networks:
+2 −1
Original line number Diff line number Diff line
@@ -254,7 +254,8 @@ define([
			this._onEvt('SAVED', this._editionSuccessDfd.resolve);

			this._emitEvt('SAVE', {
				data: response.data
				data: response.data,
				target: this.target
			});
		},

+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ define([
			//		private

			if (request.total >= 1) {
				var selectId = Credentials.get("selectIds")[request.selectionTarget];
				var selectId = Credentials.get("selectIds")[request.target];
				if (request.total > 1) {
					alertify.prompt(null,
						null,
+5 −0
Original line number Diff line number Diff line
@@ -400,8 +400,13 @@ define([

			var status = response.status,
				error = response.error,
				data = response.data,
				description = error ? error : this.defaultErrorDescription;

			if (data && data.description) {
				description += ' - ' + data.description;
			}

			if (status) {
				description += ' - ' + status + ' - <a href="/feedback/' + status + '" target="_blank">' +
					this.i18n.contact + '</a>';