File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/Proposal/Create/SchemeForms Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ interface IFormValues {
76
76
*/
77
77
const typeArrayPlaceholder = ( type : string ) : string => {
78
78
if ( Validators . isAddressType ( type ) ) {
79
- return "e.g: [' 0xACa94ef8bD5ffEE41947b4585a84BdA5a3d3DA6E',' 0x1dF62f291b2E969fB0849d99D9Ce41e2F137006e' ]" ;
79
+ return "e.g: [\" 0xACa94ef8bD5ffEE41947b4585a84BdA5a3d3DA6E\",\" 0x1dF62f291b2E969fB0849d99D9Ce41e2F137006e\" ]" ;
80
80
}
81
81
82
82
if ( Validators . isBooleanType ( type ) ) {
@@ -92,10 +92,10 @@ const typeArrayPlaceholder = (type: string): string => {
92
92
}
93
93
94
94
if ( Validators . isByteType ( type ) ) {
95
- return "e.g: [' 0xc00000000000000000000000000000000000', ' 0xc00000000000000000000000000000000001' ]" ;
95
+ return "e.g: [\" 0xc00000000000000000000000000000000000\", \" 0xc00000000000000000000000000000000001\" ]" ;
96
96
}
97
97
98
- return "e.g: [' first value', ' second value', ' third value' ]" ;
98
+ return "e.g: [\" first value\", \" second value\", \" third value\" ]" ;
99
99
} ;
100
100
101
101
class CreateGenericMultiCallScheme extends React . Component < IProps , IStateProps > {
You can’t perform that action at this time.
0 commit comments