Fix upload json formatting
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

Fix extraAttributes null exception
develop
Peter Bastiani 2024-03-04 13:20:23 +01:00
parent c74163976a
commit 9b19950945
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ export class ItemService {
putItemFile(item: IItem, jsonObject: any): Observable<IItem> {
const formData = new FormData();
const file = new File([JSON.stringify(jsonObject)], 'data.dat', {type: 'application/json'});
const file = new File([JSON.stringify(jsonObject, undefined, '\t')], 'data.dat', {type: 'application/json'});
formData.append('file', file);
return this.httpClient.put<any>(`${this.ApiEndpoint()}/api/v1/items/${item.code}/data`, formData);
}

View File

@ -27,7 +27,7 @@ export class ItemTypeService {
getExtraAttributes(itemType: string) {
let extraAttributes = null;
if (this.itemTypes[itemType]) extraAttributes = this.itemTypes[itemType].extraAttributes;
if (this.itemTypes[itemType] && this.itemTypes[itemType].extraAttributes) extraAttributes = this.itemTypes[itemType].extraAttributes;
return extraAttributes;
}