Skip to content

Commit

Permalink
Merge branch 'develop' into jerel/apple-style-tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller authored Oct 22, 2020
2 parents 91f6a75 + 88203a9 commit 231cfd3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions COMPONENT_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ There are four props that can be supplied to a code snippet.
```
````

- `copy`: `true` or `false`. Will display or not display the copy button, defaults to `true`
- `copyable`: `true` or `false`. Will display or not display the copy button, defaults to `true`
````md
```jsx copy=false
```jsx copyable=false
```
````

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"react-simple-code-editor": "^0.11.0",
"react-typist": "^2.0.5",
"react-use": "^15.3.4",
"snyk": "^1.402.0",
"snyk": "^1.404.0",
"use-dark-mode": "^2.3.1",
"use-media": "^1.4.0",
"warning": "^4.0.3",
Expand Down
4 changes: 3 additions & 1 deletion src/markdown-pages/explore-docs/nerdstoragevault.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@ Below are examples of the queries used by the components to interact with NerdSt

```json copy=false lineNumbers=false
mutation {
nerdStorageVaultWriteSecret(scope: { actor: CURRENT_USER } , key: "test", value: "secret_test") {
nerdStorageVaultWriteSecret(scope: { actor: CURRENT_USER } , secret: { key: "test", value: "secret_test" } ) {
status
errors {
message
type
}
}
}
Expand All @@ -88,6 +89,7 @@ mutation {
status
errors {
message
type
}
}
}
Expand Down

0 comments on commit 231cfd3

Please sign in to comment.