Skip to content

Commit c20182c

Browse files
add extra spacing in the fields
1 parent 5ef38ae commit c20182c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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() : ""

website/src/tabs/rest/GetMappingNames.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const GetMappingNames = () => {
5555
}
5656
};
5757

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

6060
const mappingString = useMemo(() => {
6161
return mapping !== null ? mapping : ""

website/src/tabs/rest/GetMappingValue.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const GetMappingValue = () => {
7979
}
8080
};
8181

82-
const layout = { labelCol: { span: 3 }, wrapperCol: { span: 21 } };
82+
const layout = { labelCol: { span: 4 }, wrapperCol: { span: 21 } };
8383
const programIDString = () => (programID !== null ? programID : "");
8484
const mappingNameString = () => (mappingName !== null ? mappingName : "");
8585
const mappingKeyString = () => (mappingKey !== null ? mappingKey : "");
@@ -122,7 +122,7 @@ export const GetMappingValue = () => {
122122
<Input
123123
name="mappingName"
124124
size="large"
125-
placeholder="Mapping Name"
125+
placeholder="Name"
126126
value={mappingNameString()}
127127
allowClear={true}
128128
onChange={onMappingNameChange}
@@ -132,7 +132,7 @@ export const GetMappingValue = () => {
132132
<Input
133133
name="mappingKey"
134134
size="large"
135-
placeholder="Mapping Key"
135+
placeholder="Key"
136136
value={mappingKeyString()}
137137
allowClear={true}
138138
onChange={onMappingKeyChange}

website/src/tabs/rest/GetProgram.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const GetProgram = () => {
5353
}
5454
};
5555

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

5858
const programString = useMemo(() => {
5959
return program !== null ? program : ""

website/src/tabs/rest/GetTransaction.jsx

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

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

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

0 commit comments

Comments
 (0)