From 3959b9ce5651607679ebb2fb7c3df323e19e045f Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 10 Aug 2020 15:19:51 -0400 Subject: [PATCH] LP1850825 Vandely export set default record source Provide a default value for the record ID source (csv, id, bucket) in the Vandelay record export interface. Without this, a record source was only specified if the source value was modified. Defaults to 'csv'. Signed-off-by: Bill Erickson Signed-off-by: Rogan Hamby Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/cat/vandelay/export.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/export.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/export.component.ts index cb302780ce..d5dc199acf 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/export.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/export.component.ts @@ -16,7 +16,7 @@ import {BasketService} from '@eg/share/catalog/basket.service'; }) export class ExportComponent implements AfterViewInit, OnInit { - recordSource: string; + recordSource = 'csv'; fieldNumber: number; selectedFile: File; recordId: number; -- 2.11.0