You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After performing npm install the output below appears:
4 high severity vulnerabilities
To address all issues (including breaking changes), run:
npm audit fix --force
After performing npm audit fix --force the warnings shown below appear. To fix the warnings involved making changes to two files (ImageryTimeView.vue and Plan.vue.).
The lines commented out of ImageryTimeView.vue include lines 37, 221, and 226.
import * as d3Scale from 'd3-scale';
this.xScale = d3Scale.scaleUtc();
this.xScale = d3Scale.scaleLinear();
The lines commented out of Plan.vue include lines 60, 332, and 337.
import * as d3Scale from 'd3-scale';
this.xScale = d3Scale.scaleUtc();
this.xScale = d3Scale.scaleLinear();
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After performing
npm install
the output below appears:After performing
npm audit fix --force
the warnings shown below appear. To fix the warnings involved making changes to two files (ImageryTimeView.vue and Plan.vue.).The lines commented out of ImageryTimeView.vue include lines 37, 221, and 226.
import * as d3Scale from 'd3-scale';
this.xScale = d3Scale.scaleUtc();
this.xScale = d3Scale.scaleLinear();
The lines commented out of Plan.vue include lines 60, 332, and 337.
import * as d3Scale from 'd3-scale';
this.xScale = d3Scale.scaleUtc();
this.xScale = d3Scale.scaleLinear();
Beta Was this translation helpful? Give feedback.
All reactions