Skip to content

Commit a965fdc

Browse files
committed
update property-content.hbs
1 parent 2b47ac7 commit a965fdc

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
{{#if isDeprecated}}
2-
3-
{{> deprecated-warning}}
4-
{{/if}}
51
{{#if description}}
62

73
{{description}}
84
{{/if}}
9-
{{#if enumValues}}
5+
{{#if isDeprecated}}
106

11-
{{> enum-values}}
7+
{{> deprecated-warning}}
8+
{{/if}}
9+
{{#if enumValues}}
10+
<details>
11+
<summary>Enum values:</summary>
12+
{{#each enumValues}}
13+
- `{{this}}`
14+
{{/each}}
15+
</details>
1216
{{/if}}
13-
{{#if value}}
1417

18+
{{#if value}}
1519
Value: `{{value}}`
1620
{{/if}}
1721
{{#if listProperties}}
1822
{{#each listProperties}}
19-
2023
- {{> property-nested this}}
2124
{{/each}}
22-
{{/if}}
25+
{{/if}}

0 commit comments

Comments
 (0)