You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"plugins": {
"type": "array",
"default": [{ "package": "" }],
"items": {
"type": "object",
"title": "Build Plugins",
"description": "Build Plugins extend the functionality of the build process",
"properties": {
"package": {
"type": "string",
"description": "Package name of the build plugin"
},
"input": {
"type": "object",
"description": "inputs"
}
}
}
}
}
}
and the following toml file:
[[plugins]]
package = "asd"
[plugins.input]
X=1
In this case there is not description when I hover package or when selecting from possible values in the popup. the description only shows up when hovering the value "asd"
Also no description when hovering input.
The text was updated successfully, but these errors were encountered:
I have the following schema
and the following toml file:
In this case there is not description when I hover
package
or when selecting from possible values in the popup. the description only shows up when hovering the value"asd"
Also no description when hovering
input
.The text was updated successfully, but these errors were encountered: