From a9acc9695fe2fd9f07fd7b00f5f191a89a7ceeed Mon Sep 17 00:00:00 2001 From: Yin Zhang Date: Fri, 11 Aug 2023 16:46:10 -0700 Subject: [PATCH] make "value" a property in `string_filter` component PiperOrigin-RevId: 556138390 --- frontend/app/components/controls/string_filter/string_filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/controls/string_filter/string_filter.ts b/frontend/app/components/controls/string_filter/string_filter.ts index a49501d7c..6c9e5b468 100644 --- a/frontend/app/components/controls/string_filter/string_filter.ts +++ b/frontend/app/components/controls/string_filter/string_filter.ts @@ -12,10 +12,10 @@ import {Component, EventEmitter, Input, OnChanges, Output, SimpleChanges} from ' export class StringFilter implements OnChanges { @Input() dataTable?: google.visualization.DataTable; @Input() column: number|string = -1; + @Input() value = ''; columnIndex = -1; columnLabel = ''; - value = ''; @Output() changed = new EventEmitter();