Skip to content

Commit

Permalink
make "value" a property in string_filter component
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 556138390
  • Loading branch information
zzzaries authored and copybara-github committed Aug 16, 2023
1 parent a9ddc74 commit a9acc96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<google.visualization.DataTableCellFilter>();
Expand Down

0 comments on commit a9acc96

Please sign in to comment.