Skip to content

Commit

Permalink
Fix: Update customAllValue parameter type to string in dashboard vari…
Browse files Browse the repository at this point in the history
…able docs (#189)

* fix: Update customAllValue argument type to string in variable.libsonnet

* ci: add generated files
  • Loading branch information
isarns authored Apr 10, 2024
1 parent d030d2e commit 439f4de
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion custom/dashboard/variable.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
|||,
args=[
d.arg('value', d.T.boolean, default=true),
d.arg('customAllValue', d.T.boolean, default=null),
d.arg('customAllValue', d.T.string, default=null),
]
),
withIncludeAll(value=true, customAllValue=null): {
Expand Down
6 changes: 3 additions & 3 deletions docs/API/dashboard/variable.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ PARAMETERS:

* **value** (`bool`)
- default value: `true`
* **customAllValue** (`bool`)
* **customAllValue** (`string`)

`withIncludeAll` enables an option to include all variables.

Expand Down Expand Up @@ -590,7 +590,7 @@ PARAMETERS:

* **value** (`bool`)
- default value: `true`
* **customAllValue** (`bool`)
* **customAllValue** (`string`)

`withIncludeAll` enables an option to include all variables.

Expand Down Expand Up @@ -930,7 +930,7 @@ PARAMETERS:

* **value** (`bool`)
- default value: `true`
* **customAllValue** (`bool`)
* **customAllValue** (`string`)

`withIncludeAll` enables an option to include all variables.

Expand Down
2 changes: 1 addition & 1 deletion gen/grafonnet-v10.4.0/custom/dashboard/variable.libsonnet

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

6 changes: 3 additions & 3 deletions gen/grafonnet-v10.4.0/docs/dashboard/variable.md

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

0 comments on commit 439f4de

Please sign in to comment.