File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed
gitbook/src/components/DocumentView/OpenAPI Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 142
142
@apply py-2.5 flex flex-col gap-2;
143
143
}
144
144
145
- .openapi-schema [data-deprecated = "true" ] {
146
- @apply bg-gray-100;
147
- }
148
-
149
145
.openapi-section-body .openapi-schema-properties {
150
146
@apply divide-y divide-tint-subtle;
151
147
}
Original file line number Diff line number Diff line change @@ -37,11 +37,7 @@ function OpenAPISchemaProperty(props: {
37
37
const id = useId ( ) ;
38
38
39
39
return (
40
- < div
41
- id = { id }
42
- data-deprecated = { schema . deprecated }
43
- className = { clsx ( 'openapi-schema' , className ) }
44
- >
40
+ < div id = { id } className = { clsx ( 'openapi-schema' , className ) } >
45
41
< OpenAPISchemaPresentation property = { property } />
46
42
{ ( ( ) => {
47
43
const circularRefId = parentCircularRefs . get ( schema ) ;
You can’t perform that action at this time.
0 commit comments