We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d690df commit c76acc3Copy full SHA for c76acc3
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "widgets",
3
- "version": "1.3.20",
+ "version": "1.3.21",
4
"description": "Blockchain Visualization Widgets",
5
"main": "dist/widgets.js",
6
"directories": {
src/components/base.vue
@@ -53,6 +53,7 @@
53
form.setAttribute('method', 'post');
54
form.setAttribute('action', this.data.ideUrl);
55
form.setAttribute('target', '_blank');
56
+ form.setAttribute('enctype', 'application/json');
57
form.appendChild(createHiddenField('query', JSON.stringify(this.context.query.query)));
58
form.appendChild(createHiddenField('variables', JSON.stringify(this.context.query.variables)));
59
document.body.appendChild(form);
0 commit comments