🐛 Add missing bracket
continuous-integration/drone/push Build is passing Details

timeline
Alix JEUDI--LEMOINE 2 weeks ago
parent dc0d9b0f14
commit 4a5d46ed72

@ -286,10 +286,11 @@ export class EditPinPopupComponent implements OnInit, AfterViewInit, OnDestroy {
complete_address: this.form.get('complete_address')?.value || this.form.get('location')?.value, complete_address: this.form.get('complete_address')?.value || this.form.get('location')?.value,
}; };
this.pinService.updatePin(this.pin.id, pinData).subscribe(() => { this.pinService.updatePin(this.pin.id, pinData).subscribe(() => {
this.mapReloadService.requestReload(); this.mapReloadService.requestReload();
this.closePinModal(); this.closePinModal();
}); });
}
} }
} }

Loading…
Cancel
Save