Skip to content

Commit debeed9

Browse files
committedDec 18, 2019
fix(axis): fix lint issue
1 parent 2da3404 commit debeed9

File tree

1 file changed

+1
-1
lines changed
  • packages/core/src/components/axes

1 file changed

+1
-1
lines changed
 

‎packages/core/src/components/axes/axis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class Axis extends Component {
148148

149149
if (axisOptions.scaleType === ScaleTypes.TIME) {
150150
if (Tools.getProperty(options, "timeScale", "addSpaceOnEdges")) {
151-
const timeRangeToExtend = Tools.getProperty(options, "timeScale", "timeRangeToExtend")
151+
const timeRangeToExtend = Tools.getProperty(options, "timeScale", "timeRangeToExtend");
152152
const startDate = new Date(domain[0]);
153153
const endDate = new Date(domain[1]);
154154
if (differenceInYears(endDate, startDate) > timeRangeToExtend) {

0 commit comments

Comments
 (0)