Skip to content

Commit 43abf44

Browse files
Merge branch 'testnet3' into mwong/footer-status-page
2 parents fffd661 + 39b3b77 commit 43abf44

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

website/src/tabs/advanced/DecryptAccount.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const DecryptAccount = () => {
4343
: "";
4444
};
4545

46-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
46+
const layout = { labelCol: { span: 6 }, wrapperCol: { span: 21 } };
4747
useEffect(() => {}, [inputCiphertext, inputPassword]);
4848
if (aleo !== null) {
4949
const privateKey = () =>

website/src/tabs/develop/Deploy.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export const Deploy = () => {
200200
return privateKey;
201201
};
202202

203-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
203+
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 21 } };
204204
const privateKeyString = () => (privateKey !== null ? privateKey : "");
205205
const programString = () => (program !== null ? program : "");
206206
const feeRecordString = () =>

website/src/tabs/develop/Join.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export const Join = () => {
141141
return privateKey;
142142
};
143143

144-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
144+
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 21 } };
145145
const privateKeyString = () => (privateKey !== null ? privateKey : "");
146146
const feeRecordString = () => (joinFeeRecord !== null ? joinFeeRecord : "");
147147
const recordOneString = () => (recordOne !== null ? recordOne : "");

website/src/tabs/develop/Split.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const Split = () => {
117117
return privateKey;
118118
};
119119

120-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
120+
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 21 } };
121121
const amountString = () => (splitAmount !== null ? splitAmount : "");
122122
const privateKeyString = () => (privateKey !== null ? privateKey : "");
123123
const amountRecordString = () =>

website/src/tabs/develop/Transfer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export const Transfer = () => {
200200
},
201201
];
202202

203-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
203+
const layout = { labelCol: { span: 5}, wrapperCol: { span: 21 } };
204204
const feeString = () => (transferFee !== null ? transferFee : "");
205205
const amountString = () => (transferAmount !== null ? transferAmount : "");
206206
const recipientString = () => (recipient !== null ? recipient : "");

website/src/tabs/develop/execute/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { useAleoWASM } from "../../../aleo-wasm-hook";
1919
import { useEffect, useState } from "react";
2020
import { NewAccount } from "../../account/NewAccount.jsx";
2121

22-
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 18 } };
22+
const layout = { labelCol: { span: 5 }, wrapperCol: { span: 18 } };
2323

2424
export const Execute = () => {
2525
const [form] = Form.useForm();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.container {
2-
max-width: 750px;
2+
max-width: 850px;
33
}

website/src/tabs/record/DecryptRecord.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const DecryptRecord = () => {
7171
setIsOwner(null);
7272
};
7373

74-
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 } };
74+
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 }};
7575

7676
if (aleo !== null) {
7777
const recordPlaintext = () =>
@@ -133,7 +133,7 @@ export const DecryptRecord = () => {
133133
}
134134
>
135135
<Form {...layout}>
136-
<Form.Item label="Record (Ciphertext)" colon={false}>
136+
<Form.Item label="Ciphertext" colon={false}>
137137
<Input
138138
name="recordCiphertext"
139139
size="large"
@@ -166,7 +166,7 @@ export const DecryptRecord = () => {
166166
{
167167
<Form {...layout}>
168168
<Divider />
169-
<Form.Item label="Record (Plaintext)" colon={false}>
169+
<Form.Item label="Decrypted Record" colon={false}>
170170
{plaintext ? (
171171
<Row align="middle">
172172
<Col span={23}>

website/src/tabs/rest/GetBlockByHash.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const GetBlockByHash = () => {
3939
}
4040
};
4141

42-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
42+
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 } };
4343

4444
const blockString = useMemo(() => {
4545
return blockByHash !== null ? blockByHash.toString() : ""

website/src/tabs/rest/GetBlockByHeight.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const GetBlockByHeight = () => {
4141
}
4242
};
4343

44-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
44+
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 } };
4545

4646
const blockString = useMemo(() => {
4747
return blockByHeight !== null ? blockByHeight.toString() : ""

0 commit comments

Comments
 (0)