Skip to content

Commit c456a12

Browse files
adjust columns for labels
1 parent 8ba001e commit c456a12

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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();

website/src/tabs/record/DecryptRecord.jsx

Lines changed: 1 addition & 1 deletion
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 }, layout:"vertical"};
74+
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 }};
7575

7676
if (aleo !== null) {
7777
const recordPlaintext = () =>

0 commit comments

Comments
 (0)