mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 09:48:18 -05:00
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:
@@ -425,7 +425,7 @@ function RowColumn({ index, rowIndex, columnIndex, style, data }) {
|
||||
);
|
||||
};
|
||||
|
||||
const label = cell ? cell.qText : '';
|
||||
const label = cell?.qText ?? '';
|
||||
|
||||
const getFrequencyText = () => {
|
||||
if (cell) {
|
||||
|
||||
Reference in New Issue
Block a user