Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Nov 5, 2024
1 parent bc67840 commit be0c2b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dashboard/Data/Browser/Browser.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,14 +266,14 @@ class Browser extends DashboardView {
});
}

fetchAggregationPanelData(objectId, className, appID) {
fetchAggregationPanelData(objectId, className, appId) {
this.setState({
isLoading: true,
});
const params = {
objectId: objectId,
};
const cloudCodeFunction = this.state.classwiseCloudFunctions[appID][className][0].cloudCodeFunction;
const cloudCodeFunction = this.state.classwiseCloudFunctions[appId][className][0].cloudCodeFunction;

Parse.Cloud.run(cloudCodeFunction, params).then(
result => {
Expand Down

0 comments on commit be0c2b6

Please sign in to comment.