ソースを参照

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

fix: default strokeWidth
tags/1.2.3
Rushabh Mehta 6年前
committed by GitHub
コミット
269847589f
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/js/utils/draw.js

+ 1
- 1
src/js/utils/draw.js ファイルの表示

@@ -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,


読み込み中…
キャンセル
保存