File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ export const Deploy = () => {
200
200
return privateKey ;
201
201
} ;
202
202
203
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
203
+ const layout = { labelCol : { span : 5 } , wrapperCol : { span : 21 } } ;
204
204
const privateKeyString = ( ) => ( privateKey !== null ? privateKey : "" ) ;
205
205
const programString = ( ) => ( program !== null ? program : "" ) ;
206
206
const feeRecordString = ( ) =>
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export const Join = () => {
141
141
return privateKey ;
142
142
} ;
143
143
144
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
144
+ const layout = { labelCol : { span : 5 } , wrapperCol : { span : 21 } } ;
145
145
const privateKeyString = ( ) => ( privateKey !== null ? privateKey : "" ) ;
146
146
const feeRecordString = ( ) => ( joinFeeRecord !== null ? joinFeeRecord : "" ) ;
147
147
const recordOneString = ( ) => ( recordOne !== null ? recordOne : "" ) ;
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ export const Split = () => {
117
117
return privateKey ;
118
118
} ;
119
119
120
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
120
+ const layout = { labelCol : { span : 5 } , wrapperCol : { span : 21 } } ;
121
121
const amountString = ( ) => ( splitAmount !== null ? splitAmount : "" ) ;
122
122
const privateKeyString = ( ) => ( privateKey !== null ? privateKey : "" ) ;
123
123
const amountRecordString = ( ) =>
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ export const Transfer = () => {
200
200
} ,
201
201
] ;
202
202
203
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
203
+ const layout = { labelCol : { span : 5 } , wrapperCol : { span : 21 } } ;
204
204
const feeString = ( ) => ( transferFee !== null ? transferFee : "" ) ;
205
205
const amountString = ( ) => ( transferAmount !== null ? transferAmount : "" ) ;
206
206
const recipientString = ( ) => ( recipient !== null ? recipient : "" ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import { useAleoWASM } from "../../../aleo-wasm-hook";
19
19
import { useEffect , useState } from "react" ;
20
20
import { NewAccount } from "../../account/NewAccount.jsx" ;
21
21
22
- const layout = { labelCol : { span : 4 } , wrapperCol : { span : 18 } } ;
22
+ const layout = { labelCol : { span : 5 } , wrapperCol : { span : 18 } } ;
23
23
24
24
export const Execute = ( ) => {
25
25
const [ form ] = Form . useForm ( ) ;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export const DecryptRecord = () => {
71
71
setIsOwner ( null ) ;
72
72
} ;
73
73
74
- const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } , layout : "vertical" } ;
74
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
75
75
76
76
if ( aleo !== null ) {
77
77
const recordPlaintext = ( ) =>
You can’t perform that action at this time.
0 commit comments