Skip to content
Snippets Groups Projects
Commit b3249b18 authored by Lars Kollmann's avatar Lars Kollmann
Browse files

Merge branch 'feature/160-remove-log' into 'develop'

Resolve "logging entfernen"

Closes #160

See merge request rdm/biome/frontend!152
parents 617321fc 7b9b1f80
No related branches found
No related tags found
2 merge requests!153Develop,!152Resolve "logging entfernen"
Pipeline #420059 passed
......@@ -25,7 +25,6 @@ export default class SpeciesCatalogContent extends Vue {
@Watch("SelectedItem")
private selectedItemWatcher(selectedItem: any) {
console.log(selectedItem)
if (selectedItem === null || selectedItem === undefined || selectedItem.length === 0) {
// if nothing selected, do not show children
// change here if needed
......
......@@ -80,7 +80,6 @@ export class ObservationService {
}
public updateObservation = async (observation: Observation) => {
console.log(observation)
const commentCleaned = observation.comment === "" ? `comment: null` : `comment: "${this.replaceLineBreaks(observation.comment)}"`;
const sex = observation.sex === "" ? `sex: null` : `sex: "${observation.sex}"`;
const species = (observation.selectedSpeciesItem === null || !observation.selectedSpeciesItem.ptnameId) ? `species: null` : `species: ${observation.selectedSpeciesItem.ptnameId}`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment