Skip to content

Commit

Permalink
fix(rup): registros siempre visibles en ejecucion
Browse files Browse the repository at this point in the history
  • Loading branch information
liquid36 committed Mar 8, 2021
1 parent 0dced0b commit efba97c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit efba97c

Please sign in to comment.