Skip to content

Commit

Permalink
fix accessor - filePath is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
sghall committed Apr 18, 2017
1 parent 21f8831 commit 43c21a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { VIEW, TRBL, DIMS } from '../module/constants';
import { x, y, getScaleInterpolators } from '../module/scales';
import description from '../description.md';

const arcKeyAccessor = (d) => d.filePath.toString();
const arcKeyAccessor = (d) => d.filePath;

export class Example extends Component {
constructor(props) {
Expand Down

0 comments on commit 43c21a6

Please sign in to comment.