Skip to content
This repository has been archived by the owner on Mar 21, 2022. It is now read-only.

Commit

Permalink
fix: handling of numeric id
Browse files Browse the repository at this point in the history
  • Loading branch information
msand committed Sep 28, 2019
1 parent 42a2606 commit 2fb39f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/extract/extractProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function extractProps(
};

if (id) {
extracted.name = id;
extracted.name = String(id);
}

if (clipPath) {
Expand Down

0 comments on commit 2fb39f5

Please sign in to comment.