Skip to content

Commit

Permalink
fix(insights): show more query errors (#20611)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra authored Feb 29, 2024
1 parent 6117206 commit 3796fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/queries/nodes/DataNode/dataNodeLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export const dataNodeLogic = kea<dataNodeLogicType>([
}
return error ?? 'Error loading data'
},
loadDataSuccess: () => null,
loadDataSuccess: (_, { response }) => response?.error ?? null,
},
],
elapsedTime: [
Expand Down

0 comments on commit 3796fba

Please sign in to comment.