Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Addresses need quotes #351

Merged
merged 1 commit into from Apr 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Addresses need quotes
I'm inferring from #118 that address parameters need quotes.
  • Loading branch information
Will White authored Feb 27, 2017
commit c7454d50b9034c4bbc96e156b8ed17609225ee6a
4 changes: 2 additions & 2 deletions app/client/templates/elements/inputs/json.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<h4>
{{#if name}}{{{toSentence name}}} <em>-</em> {{/if}}<em>{{type}}</em>
</h4>
<textarea name="elements_input_json" cols="20" rows="5" class="abi-input {{class}}" placeholder="['my text', 12345]">{{value}}</textarea>
</template>
<textarea name="elements_input_json" cols="20" rows="5" class="abi-input {{class}}" placeholder="['my text', 12345, '0x...']">{{value}}</textarea>
</template>