Compare commits

..

No commits in common. "7e17a49dc6de996272f67ef24d5b52602e4e42d7" and "3f286ee0422c4cb54668751e1472a7cadde0cfd5" have entirely different histories.

4 changed files with 2 additions and 8 deletions

View File

@ -1,10 +1,6 @@
{
"name": "farmmaps-lib-app",
<<<<<<< HEAD
"version": "4.3.1",
=======
"version": "4.4.0",
>>>>>>> develop
"scripts": {
"ng": "ng",
"start": "ng serve",

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, undefined, '\t')], 'data.dat', {type: 'application/json'});
const file = new File([JSON.stringify(jsonObject)], '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] && this.itemTypes[itemType].extraAttributes) extraAttributes = this.itemTypes[itemType].extraAttributes;
if (this.itemTypes[itemType]) extraAttributes = this.itemTypes[itemType].extraAttributes;
return extraAttributes;
}

View File

@ -33,8 +33,6 @@ export class SelectInteractionComponent implements OnInit, OnDestroy {
filter?: FilterFunction;
@Input()
wrapX?: boolean;
@Input()
hitTolerance?: number;
@Output()
olChange = new EventEmitter<SelectEvent>();