From a463334c94a76b70d53c7b1a520486deb464d28b Mon Sep 17 00:00:00 2001 From: garrettmills Date: Tue, 18 Feb 2020 11:21:15 -0600 Subject: [PATCH] Fix member visibility build error --- .../editor/database/editors/select/select-editor.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/editor/database/editors/select/select-editor.component.ts b/src/app/components/editor/database/editors/select/select-editor.component.ts index 169e431..670ef2c 100644 --- a/src/app/components/editor/database/editors/select/select-editor.component.ts +++ b/src/app/components/editor/database/editors/select/select-editor.component.ts @@ -19,7 +19,7 @@ import {IonSelect} from '@ionic/angular'; ], }) export class SelectEditorComponent implements ICellEditorAngularComp, AfterViewInit { - private params: ICellEditorParams; + public params: ICellEditorParams; public value: string; public options: Array<{value: string}> = []; @ViewChild('select', {static: false}) select: IonSelect;