Skip to content

Commit

Permalink
Merge pull request #1176 from shaoyudong/branch3
Browse files Browse the repository at this point in the history
fix: 快应用默认manifest添加titleBarBackgroundColor字段
  • Loading branch information
shaoyudong committed Sep 27, 2019
2 parents 24c38ec + 9100a99 commit 1a26b98
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cli/consts/quickAPIList.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ exports.default = [
'@service.share',
'@service.qqaccount',
'@service.wxaccount',
'@service\.wbaccount'
'@service.wbaccount'
];
3 changes: 2 additions & 1 deletion packages/cli/packages/quickHelpers/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ var manifest = {
},
display: {
menu: true,
titleBar: true
titleBar: true,
titleBarBackgroundColor: "#ffffff"
},
subpackages: []
};
Expand Down
2 changes: 1 addition & 1 deletion src/cli/consts/quickAPIList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ export default [
'@service.share',
'@service.qqaccount',
'@service.wxaccount',
'@service\.wbaccount'
'@service.wbaccount'
];
3 changes: 2 additions & 1 deletion src/cli/packages/quickHelpers/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ var manifest: any = {
},
display: {
menu: true,
titleBar: true
titleBar: true,
titleBarBackgroundColor: "#ffffff"
},
subpackages: []

Expand Down

0 comments on commit 1a26b98

Please sign in to comment.