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 648dddf commit 52e9d27Copy full SHA for 52e9d27
packages/graphql-playground-react/src/components/PlaygroundWrapper.tsx
@@ -44,6 +44,7 @@ export interface PlaygroundWrapperProps {
44
subscriptionEndpoint?: string
45
setTitle?: boolean
46
settings?: ISettings
47
+ shareEnabled?: string
48
folderName?: string
49
configString?: string
50
showNewWorkspace?: boolean
@@ -373,6 +374,7 @@ class PlaygroundWrapper extends React.Component<
373
374
)}
375
<Playground
376
endpoint={this.state.endpoint}
377
+ shareEnabled={this.props.shareEnabled}
378
subscriptionEndpoint={this.state.subscriptionEndpoint}
379
shareUrl={this.state.shareUrl}
380
onChangeEndpoint={this.handleChangeEndpoint}
0 commit comments