Skip to content

Commit 09f86e5

Browse files
authored
Merge pull request linode#30 from linode/DLC-162
DLC-162 update missing requestBody fields
2 parents 0b84730 + 008886f commit 09f86e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/2_molecules/BodySchema.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,10 @@ export const BodySchema = props => {
106106
s.properties &&
107107
Object.keys(s.properties).map((p, i) => {
108108
const b = s.properties[p];
109+
console.log(b)
109110
return (
110111
b &&
111-
b.readOnly === undefined && (
112+
b.x_linode_cli_display !== 1 && (
112113
<div key={i} className="response-wrapper">
113114
<div className="lg:flex pt-2 mb-4 initResponse">
114115
<div className="w-full lg:w-1/4">

0 commit comments

Comments
 (0)