We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d90be commit 82be4a4Copy full SHA for 82be4a4
src/lib/fragments/AgGrid.react.js
@@ -782,7 +782,8 @@ export default class DashAgGrid extends Component {
782
// Call the API to select rows unless the update was triggered by a selection made in the UI
783
if (
784
!equals(selectedRows, prevProps.selectedRows) &&
785
- !(loading_state !== undefined
+ // eslint-disable-next-line no-undefined
786
+ !(typeof loading_state !== 'undefined'
787
? loading_state && this.selectionEventFired
788
: this.selectionEventFired)
789
) {
0 commit comments