Commit 33f86334 authored by Labros Papadopoulos's avatar Labros Papadopoulos
Browse files

fix malformed object

parent 38573ada
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ export interface GeographicAddressValue extends PlaceRefOrValue {
    /**
     * When sub-classing, this defines the sub-class Extensible name
     */
    type: string;
    '@type': string;
    /**
     * When sub-classing, this defines the super-class
     */
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ export interface PlaceRefOrValue {
    /**
     * When sub-classing, this defines the sub-class Extensible name
     */
    type: string;
    '@type': string;
    /**
     * When sub-classing, this defines the super-class
     */
+2 −2
Original line number Diff line number Diff line
@@ -274,9 +274,9 @@ export class EditIndividualsComponent implements OnInit {
        }],
        externalIdentifier: [],
        calendar:[],
        place:[{type:null,
        place:[{'@type':"GeographicAddressValue",
          geographicAddress:{
            type:null,
            '@type':"GeographicAddressValue",
            locality: this.editForm.value.geographicSiteInfo.locality ,
            postcode: this.editForm.value.geographicSiteInfo.postcode ,
            stateOrProvince: this.editForm.value.geographicSiteInfo.stateOrProvince ,