fix(listbox-search): crash while searching within listbox with empty records (#1104)

* test: utils covered

* fix: listbox selection dropdown anchor ref

* fix: more precise check for `cell.qText`

* chore: upd
This commit is contained in:
Ahmad Mirzaei
2023-03-03 12:52:56 +01:00
committed by GitHub
parent 739486a58a
commit 6d025fd0d5

View File

@@ -425,7 +425,7 @@ function RowColumn({ index, rowIndex, columnIndex, style, data }) {
);
};
const label = cell ? cell.qText : '';
const label = cell?.qText ?? '';
const getFrequencyText = () => {
if (cell) {