File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export const GetBlockByHash = () => {
39
39
}
40
40
} ;
41
41
42
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
42
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
43
43
44
44
const blockString = useMemo ( ( ) => {
45
45
return blockByHash !== null ? blockByHash . toString ( ) : ""
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export const GetBlockByHeight = () => {
41
41
}
42
42
} ;
43
43
44
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
44
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
45
45
46
46
const blockString = useMemo ( ( ) => {
47
47
return blockByHeight !== null ? blockByHeight . toString ( ) : ""
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export const GetMappingNames = () => {
55
55
}
56
56
} ;
57
57
58
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
58
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
59
59
60
60
const mappingString = useMemo ( ( ) => {
61
61
return mapping !== null ? mapping : ""
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export const GetMappingValue = () => {
79
79
}
80
80
} ;
81
81
82
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
82
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
83
83
const programIDString = ( ) => ( programID !== null ? programID : "" ) ;
84
84
const mappingNameString = ( ) => ( mappingName !== null ? mappingName : "" ) ;
85
85
const mappingKeyString = ( ) => ( mappingKey !== null ? mappingKey : "" ) ;
@@ -122,7 +122,7 @@ export const GetMappingValue = () => {
122
122
< Input
123
123
name = "mappingName"
124
124
size = "large"
125
- placeholder = "Mapping Name"
125
+ placeholder = "Name"
126
126
value = { mappingNameString ( ) }
127
127
allowClear = { true }
128
128
onChange = { onMappingNameChange }
@@ -132,7 +132,7 @@ export const GetMappingValue = () => {
132
132
< Input
133
133
name = "mappingKey"
134
134
size = "large"
135
- placeholder = "Mapping Key"
135
+ placeholder = "Key"
136
136
value = { mappingKeyString ( ) }
137
137
allowClear = { true }
138
138
onChange = { onMappingKeyChange }
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export const GetProgram = () => {
53
53
}
54
54
} ;
55
55
56
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
56
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
57
57
58
58
const programString = useMemo ( ( ) => {
59
59
return program !== null ? program : ""
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export const GetTransaction = () => {
39
39
}
40
40
} ;
41
41
42
- const layout = { labelCol : { span : 3 } , wrapperCol : { span : 21 } } ;
42
+ const layout = { labelCol : { span : 4 } , wrapperCol : { span : 21 } } ;
43
43
44
44
const transactionString = useMemo ( ( ) => {
45
45
return transaction !== null ? transaction . toString ( ) : ""
You can’t perform that action at this time.
0 commit comments