File tree 2 files changed +3
-2
lines changed
scripts/apidocgen/markdown-template 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ Status Code **200**
162
162
| ` » active_version_id ` | string | false | | |
163
163
| ` » allow_user_cancel_workspace_jobs ` | boolean | false | | |
164
164
| ` » build_time_stats ` | ` codersdk.TemplateBuildTimeStats ` | false | | |
165
- | ` »» **additionalProperties** ` | ` codersdk.TransitionStats ` | false | | |
165
+ | ` »» [any property] ` | ` codersdk.TransitionStats ` | false | | |
166
166
| ` »»» p50 ` | integer | false | | |
167
167
| ` »»» p95 ` | integer | false | | |
168
168
| ` » created_at ` | string | false | | |
Original file line number Diff line number Diff line change 29
29
if (p.displayName == "*anonymous*") {
30
30
return "[array items]";
31
31
}
32
- return p.displayName;
32
+ let displayName = p.displayName.replace("**additionalProperties**", "[any property]");
33
+ return displayName;
33
34
}
34
35
}}
35
36
{{ data.responses = data.utils.getResponses(data); }}
You can’t perform that action at this time.
0 commit comments