diff --git a/src/property-filter/interfaces.ts b/src/property-filter/interfaces.ts index cd53565f7b..f93b2e1535 100644 --- a/src/property-filter/interfaces.ts +++ b/src/property-filter/interfaces.ts @@ -47,9 +47,9 @@ export interface PropertyFilterProps extends BaseComponentProps, ExpandToViewpor countText?: string; /** * An object representing the current query displayed in the property filter. Has three properties: `operation`, `tokens`, and `tokenGroups`. - * The `operation` has two valid values: "and", "or", and controls the join operation to be applied between tokens when filtering the items. - * The `tokens` is an array of objects that will be displayed to the user beneath the filtering input. When `enableTokenGroups=true`, the - * `tokenGroups` property is populated instead, which supports nested tokens. + * The `operation` property has two valid values: "and", "or", and controls the join operation to be applied between tokens when filtering the items. + * The `tokens` property is an array of objects that will be displayed to the user beneath the filtering input. When `enableTokenGroups=true`, the + * `tokenGroups` property is used instead, which supports nested tokens. * * Each token has the following properties: * * value [string]: The string value of the token to be used as a filter.