Browse Source

Merge pull request #229 from frappe/fix-stroke-width

fix: default strokeWidth
tags/1.2.3
Rushabh Mehta 6 years ago
committed by GitHub
parent
commit
269847589f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/js/utils/draw.js

+ 1
- 1
src/js/utils/draw.js View File

@@ -98,7 +98,7 @@ export function wrapInSVGGroup(elements, className='') {
return g;
}

export function makePath(pathStr, className='', stroke='none', fill='none', strokeWidth=0) {
export function makePath(pathStr, className='', stroke='none', fill='none', strokeWidth=2) {
return createSVG('path', {
className: className,
d: pathStr,


Loading…
Cancel
Save