export function mapColumnToSelectItems(fields: string[]) { const items: any[] = [{ value: '', label: 'Select source field' }]; for (const fieldName of fields) { if (fieldName) { items.push({ value: fieldName, label: fieldName }); } } return items; }