import {Component, Input} from '@angular/core'; import {Resource} from 'idai-components-2'; @Component({ selector: 'dai-input', template: `` }) /** * @author Fabian Zav. * @author Sebastian Cuy * @author Thomas Kleinke */ export class InputComponent { @Input() resource: Resource; @Input() fieldName: string; public deleteIfEmpty(value: string) { if (value === '') delete this.resource[this.fieldName]; } }