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 21976bc commit df8499cCopy full SHA for df8499c
playground/app.js
@@ -384,12 +384,14 @@ class App extends Component {
384
this.setState({ formData, shareURL: null });
385
386
onShare = () => {
387
- const { formData, schema, uiSchema } = this.state;
+ const { formData, schema, uiSchema, liveSettings } = this.state;
388
const {
389
location: { origin, pathname },
390
} = document;
391
try {
392
- const hash = btoa(JSON.stringify({ formData, schema, uiSchema }));
+ const hash = btoa(
393
+ JSON.stringify({ formData, schema, uiSchema, liveSettings })
394
+ );
395
this.setState({ shareURL: `${origin}${pathname}#${hash}` });
396
} catch (err) {
397
this.setState({ shareURL: null });
0 commit comments