diff --git a/web-app/src/app/observation/observation.service.ts b/web-app/src/app/observation/observation.service.ts index 4bdd5f3cc..f0183107b 100644 --- a/web-app/src/app/observation/observation.service.ts +++ b/web-app/src/app/observation/observation.service.ts @@ -75,9 +75,7 @@ export class ObservationService { archiveObservationForEvent(event, observation): Observable { return this.client.post(`/api/events/${event.id}/observations/${observation.id}/states`, { name: 'archive' }).pipe( - map(observation => { - return this.transformObservations(observation, event) - }) + map(() => observation) ) } diff --git a/web-app/src/styles.scss b/web-app/src/styles.scss index ccc02903c..b8c91191d 100644 --- a/web-app/src/styles.scss +++ b/web-app/src/styles.scss @@ -19,7 +19,7 @@ app { position: absolute !important; left: 0; bottom: 0; - min-width: 468px; + min-width: 500px; } .form-remove-snackbar {