Skip to content

Commit 8821e5e

Browse files
arnoweissjimmarino
authored andcommitted
fix: imports and references
(cherry picked from commit fca47c2)
1 parent fee40e5 commit 8821e5e

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

artifacts/buildSrc/src/main/java/org/eclipse/dsp/generation/transformer/HtmlTableTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private String parseResolvedTypes(SchemaProperty property) {
106106
var itemTypes = resolvedProperty.getItemTypes().stream()
107107
.flatMap(t -> t.getResolvedTypes().stream())
108108
.map(e -> {
109-
if (e.isJsonBaseType()) {
109+
if (e.isJsonBaseType() || getTypeName(e).startsWith("array")) {
110110
return String.format("%s", getTypeName(e));
111111
}
112112
return String.format("<a href=#%s-table>%s</a>", getTypeName(e), getTypeName(e));

specifications/common/type.definitions.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Lower Level Type Definitions
22

3-
<p data-include="message/table/action.html" data-include-format="html">
4-
</p>
5-
63
<p data-include="message/table/agreement.html" data-include-format="html">
74
</p>
85

@@ -33,5 +30,11 @@
3330
<p data-include="message/table/offer.html" data-include-format="html">
3431
</p>
3532

33+
<p data-include="message/table/permission.html" data-include-format="html">
34+
</p>
35+
36+
<p data-include="message/table/prohibition.html" data-include-format="html">
37+
</p>
38+
3639
<p data-include="message/table/rule.html" data-include-format="html">
3740
</p>

0 commit comments

Comments
 (0)