Skip to content

Commit fe0ecb0

Browse files
committed
fix for lint
1 parent 7c904c5 commit fe0ecb0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/fragments/AgGrid.react.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,9 @@ export default class DashAgGrid extends Component {
782782
// Call the API to select rows unless the update was triggered by a selection made in the UI
783783
if (
784784
!equals(selectedRows, prevProps.selectedRows) &&
785-
!(loading_state ? (loading_state && this.selectionEventFired) : this.selectionEventFired)
785+
!(loading_state
786+
? loading_state && this.selectionEventFired
787+
: this.selectionEventFired)
786788
) {
787789
if (!this.dataUpdates) {
788790
setTimeout(() => {

0 commit comments

Comments
 (0)