diff --git a/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts b/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts index 514e99304f..6396fc4d7f 100644 --- a/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts +++ b/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts @@ -75,7 +75,7 @@ export class PrestacionEjecucionComponent implements OnInit, OnDestroy { public conceptoAEliminar: any; // boleean para verificar si estan todos los conceptos colapsados - public collapse = true; + public collapse = false; // boton de volver cuando la ejecucion tiene motivo de internacion. // Por defecto vuelve al mapa de camas @@ -270,7 +270,7 @@ export class PrestacionEjecucionComponent implements OnInit, OnDestroy { mostrarDatosEnEjecucion() { if (this.prestacion) { this.prestacion.ejecucion.registros.forEach(registro => { - this.itemsRegistros[registro.id] = { collapse: true, items: null }; + this.itemsRegistros[registro.id] = { collapse: false, items: null }; }); this.armarRelaciones(this.prestacion.ejecucion.registros); } diff --git a/src/environments/environment.dev.ts b/src/environments/environment.dev.ts index c382149405..e16862706c 100644 --- a/src/environments/environment.dev.ts +++ b/src/environments/environment.dev.ts @@ -4,7 +4,7 @@ import { apiKeys, analytics, hotjar, password_recovery, captcha } from './apiKey export const environment = { production: false, environmentName: 'development', - API: '//localhost:3002/api', + API: 'https://demo.andes.gob.ar/api', WS: '//localhost:3002', APIStatusCheck: false, version: _package.version,