Skip to content

Commit 93287a1

Browse files
authored
Merge pull request #2269 from daostack/update-example-inputs
Update example inputs in multi-call
2 parents b4b13a6 + 387636a commit 93287a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Proposal/Create/SchemeForms/CreateGenericMultiCallProposal.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ interface IFormValues {
7676
*/
7777
const typeArrayPlaceholder = (type: string): string => {
7878
if (Validators.isAddressType(type)) {
79-
return "e.g: ['0xACa94ef8bD5ffEE41947b4585a84BdA5a3d3DA6E','0x1dF62f291b2E969fB0849d99D9Ce41e2F137006e']";
79+
return "e.g: [\"0xACa94ef8bD5ffEE41947b4585a84BdA5a3d3DA6E\",\"0x1dF62f291b2E969fB0849d99D9Ce41e2F137006e\"]";
8080
}
8181

8282
if (Validators.isBooleanType(type)) {
@@ -92,10 +92,10 @@ const typeArrayPlaceholder = (type: string): string => {
9292
}
9393

9494
if (Validators.isByteType(type)) {
95-
return "e.g: ['0xc00000000000000000000000000000000000', '0xc00000000000000000000000000000000001']";
95+
return "e.g: [\"0xc00000000000000000000000000000000000\", \"0xc00000000000000000000000000000000001\"]";
9696
}
9797

98-
return "e.g: ['first value', 'second value', 'third value']";
98+
return "e.g: [\"first value\", \"second value\", \"third value\"]";
9999
};
100100

101101
class CreateGenericMultiCallScheme extends React.Component<IProps, IStateProps> {

0 commit comments

Comments
 (0)