Skip to content

Commit

Permalink
Build: (a2263e6) Update main.yml (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-NRCan committed Oct 18, 2023
1 parent e646e45 commit 6bfe430
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27805,9 +27805,17 @@ function App() {
console.error(dataErrors.errors, optionsErrors.errors);
alert('There was an error parsing the Chart inputs. View console for details.');
};

/**
* Handles when the Chart X Axis has changed.
*/
var handleChartXAxisChanged = function handleChartXAxisChanged() {
console.log('Handle Chart X Axis');
};

/**
* Handles when the Chart Y Axis has changed.
*/
var handleChartYAxisChanged = function handleChartYAxisChanged() {
console.log('Handle Chart Y Axis');
};
Expand All @@ -27820,7 +27828,7 @@ function App() {
};
});

// Render
// Render the Chart
return /*#__PURE__*/(0,jsx_runtime.jsx)(chart_Chart, {
style: {
width: 800
Expand Down

0 comments on commit 6bfe430

Please sign in to comment.