Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix the space tab mix issue.
  • Loading branch information
wmzhong committed May 21, 2018
commit 740e0bb9f64fbc52fa143e0171e312e031e3cf72
4 changes: 2 additions & 2 deletions src/core/core.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -988,10 +988,10 @@ module.exports = function(Chart) {
break;
}
if (labelArray.indexOf(item.x) > -1) {
return true
return true;
}
}
return false
return false;
},
});

Expand Down