Skip to content

Commit 6161e51

Browse files
committed
fix
1 parent 0d10f3e commit 6161e51

File tree

5 files changed

+169
-203
lines changed

5 files changed

+169
-203
lines changed

ui/src/assets/components/data_grid.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,8 @@
5252
text-overflow: ellipsis;
5353
}
5454
}
55+
56+
.pf-distinct-values-menu {
57+
max-height: 300px;
58+
overflow-y: auto;
59+
}

ui/src/components/widgets/data_grid/common.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ export interface DataGridDataSource {
109109
* Get distinct values for a column with current filters applied.
110110
* Returns up to maxValues distinct values, or 'too_many' if there are more.
111111
* Returns 'error' if the query fails.
112+
* Results are cached internally by the data source and invalidated when
113+
* filters change.
112114
*/
113115
getDistinctValues?(
114116
column: string,

0 commit comments

Comments
 (0)