mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
* refactor: compensate for checkboxes in item width * test: search highlight rendering test * refactor: disable some select actions in dq mode * fix: rm test * refactor: add flags fallback to context * refactor: send flags through options instead of context * refactor: rm flags completely
5 lines
127 B
JavaScript
5 lines
127 B
JavaScript
export default function isDirectQueryEnabled({ appLayout }) {
|
|
const isDQ = !!appLayout?.qIsDirectQueryMode;
|
|
return isDQ;
|
|
}
|