13 | Request ID: @Model.RequestId
14 |
19 | Swapping to the Development environment displays detailed information about the error that occurred. 20 |
21 |22 | The Development environment shouldn't be enabled for deployed applications. 23 | It can result in displaying sensitive information from exceptions to end users. 24 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 25 | and restarting the app. 26 |
27 | -------------------------------------------------------------------------------- /canary/ClientApp/src/components/misc/info/FHIRInfo.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Category } from './Category'; 3 | 4 | export class FHIRInfo extends Component { 5 | displayName = FHIRInfo.name; 6 | 7 | constructor(props) { 8 | super(props); 9 | this.state = { ...this.props }; 10 | } 11 | 12 | render() { 13 | return ( 14 |33 | Canary is a testing framework that supports development of systems that perform standards based exchange of mortality data, providing tests 34 | and tools to aid developers in implementing the FHIR Vital Records Death Record format. 35 |
36 |