X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b693bdde231b0ca4171015e578d9760c6001749b..ec9057d4237fb070cb9c707e7131cc8f1cf009ea:/src/components/data-table/data-column.ts diff --git a/src/components/data-table/data-column.ts b/src/components/data-table/data-column.ts index 28e93bee..aada4139 100644 --- a/src/components/data-table/data-column.ts +++ b/src/components/data-table/data-column.ts @@ -11,6 +11,12 @@ export interface DataColumn { name: string; selected: boolean; configurable: boolean; + + /** + * If set to true, filters on this column will be displayed in a + * radio group and only one filter can be selected at a time. + */ + mutuallyExclusiveFilters?: boolean; sortDirection?: SortDirection; filters: DataTableFilters; render: (item: T) => React.ReactElement;