diff --git a/superset-frontend/src/components/ListView/ListView.tsx b/superset-frontend/src/components/ListView/ListView.tsx index f4b5f083c7..0a1c14ddb4 100644 --- a/superset-frontend/src/components/ListView/ListView.tsx +++ b/superset-frontend/src/components/ListView/ListView.tsx @@ -226,6 +226,7 @@ export interface ListViewProps { highlightRowId?: number; showThumbnails?: boolean; emptyState?: EmptyStateProps; + columnsForWrapText?: string[]; } function ListView({ @@ -248,6 +249,7 @@ function ListView({ defaultViewMode = 'card', highlightRowId, emptyState, + columnsForWrapText, }: ListViewProps) { const { getTableProps, @@ -399,6 +401,7 @@ function ListView({ columns={columns} loading={loading} highlightRowId={highlightRowId} + columnsForWrapText={columnsForWrapText} /> )} {!loading && rows.length === 0 && (