Skip to content

Commit

Permalink
Resolve site ts error (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
btea authored Sep 5, 2023
1 parent a8b0479 commit 59ca641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/components/PkgNode.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
$: isValueArray = Array.isArray(value)
$: isValueObject = value && typeof value === 'object'
$: keyText = key && isNaN(parseInt(key)) ? `"${key}": ` : ''
$: keyText = key && isNaN(parseInt(`${key}`)) ? `"${key}": ` : ''
$: matchedMessages = messages.filter(
(v) => v.path.length && isArrayEqual(paths, v.path)
Expand Down

0 comments on commit 59ca641

Please sign in to comment.