Skip to content

Commit

Permalink
fix(plugin): 修复二维码插件black属性导致其他ui框架颜色错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiu-Jun committed Jul 23, 2024
1 parent a5d5066 commit 3730b60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/plugin/QrCodePlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ class QrCodePlugin implements IPluginTempl {
width: 300,
margin: 10,
errorCorrectionLevel: 'M',
dotsColor: 'black',
dotsColor: '#000000',
dotsType: 'rounded',
cornersSquareColor: 'black',
cornersSquareColor: '#000000',
cornersSquareType: 'square',
cornersDotColor: 'black',
cornersDotColor: '#000000',
cornersDotType: 'square',
background: '#ffffff',
};
Expand Down

0 comments on commit 3730b60

Please sign in to comment.