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