Skip to content

Commit 7e69fb9

Browse files
authored
Merge pull request #8 from CovenantSQL/dev
Dev
2 parents b01692d + 9625a1b commit 7e69fb9

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<p align="center">
33
<a href="http://github.com/CovenantSQL/cql-cloud-fe">
4-
<img alt="Covenant Cloud" height="64" src="./docs/_media/logo.svg">
4+
<img alt="CQL Cloud" height="64" src="./docs/_media/logo.svg">
55
</a>
66
</p>
77

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Covenant Cloud",
2+
"name": "CQL Cloud",
33
"start_url": ".",
44
"display": "standalone",
55
"background_color": "#fff",

src/components/Layout/Menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const { SubMenu } = Menu
1616
@withRouter
1717
class SiderMenu extends PureComponent {
1818
state = {
19-
openKeys: store.get('openKeys') || [],
19+
openKeys: store.get('openKeys') || ['101'], // default open the first project
2020
}
2121

2222
onOpenChange = openKeys => {

src/pages/dashboard/components/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function User({ avatar, username, projectNum = 0, ptc = 0 }) {
2525
</div>
2626
<div className={styles.number}>
2727
<div className={styles.item}>
28-
<p># Projects</p>
28+
<p>Projects</p>
2929
<p style={{ color: Color.green }}>
3030
<CountUp end={projectNum} prefix="" {...countUpProps} />
3131
</p>

src/pages/wallets/components/DownloadWalletModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class DownloadWalletModal extends PureComponent {
7777
>
7878
<p className={styles.instru}>
7979
<Trans>
80-
此钱包暂存在 Covenant Cloud
80+
此钱包暂存在 CQL Cloud
8181
上,你可以设置私钥加密密码来对钱包进行加密,
8282
或者直接下载明文私钥钱包。
8383
</Trans>

src/pages/wallets/components/UploadWalletModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class UploadWalletModal extends PureComponent {
7171
content: (
7272
<div>
7373
<p>
74-
<Trans>你现在即可用下面的钱包来使用 Covenant Cloud 服务</Trans>
74+
<Trans>你现在即可用下面的钱包来使用 CQL Cloud 服务</Trans>
7575
</p>
7676
<WalletAvatar seed={account} cutoff={20} />
7777
</div>

src/pages/wallets/components/WalletNKeyModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class WalletNKeyModal extends PureComponent {
3737
{isNewCreated ? (
3838
<Trans>
3939
你的 CovenantSQL 钱包已成功生成,为方便使用,你的钱包会暂存在
40-
Covenant Cloud 上, 并绑定你的 Github 账户。你可以随时在 Covenant
40+
CQL Cloud 上, 并绑定你的 Github 账户。你可以随时在 Covenant
4141
Cloud 下载并加密,或移除你的钱包。
4242
</Trans>
4343
) : (

src/pages/wallets/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Wallets extends PureComponent {
5353
const { dispatch } = this.props
5454

5555
Modal.confirm({
56-
title: <Trans>确定要在 Covenant Cloud 上移除此钱包么?</Trans>,
56+
title: <Trans>确定要在 CQL Cloud 上移除此钱包么?</Trans>,
5757
content: `${account}`,
5858
okText: <Trans>确认移除</Trans>,
5959
okType: 'danger',

src/utils/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
2-
siteName: 'Covenant Cloud',
3-
copyright: 'Covenant Cloud © 2019 CovenantLabs',
2+
siteName: 'CQL Cloud',
3+
copyright: 'CQL Cloud © 2019 CovenantLabs',
44
logoPath: '/logo.svg',
55
apiEndpoint:
66
process.env.NODE_ENV === 'development' ? '' : '//stg-api.covenantsql.io',

0 commit comments

Comments
 (0)