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 9e646ea commit d016898Copy full SHA for d016898
src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetype/Metadata.kt
@@ -61,13 +61,17 @@ data class Metadata(
61
} else {
62
this.type = "String"
63
}
64
+ if (!map.containsKey("visible")) {
65
+ this.properties["visible"] = true
66
+ }
67
} catch (ignored: Exception) {
68
this.properties.clear()
69
val prop = HashMap<String, Any>()
70
prop["key"] = name.replace("@", "")
71
prop["label"] = name.replace("@", "")
72
prop["description"] = description
73
prop["type"] = type
74
+ prop["visible"] = true
75
this.properties.putAll(prop)
76
77
0 commit comments