File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
packages/web/app/src/pages Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ function DeprecatedSchemaExplorer(props: {
259259 targetSlug = { props . targetSlug }
260260 variant = "deprecated"
261261 />
262- { latestValidSchemaVersion ?. explorer ?. metadataAttributes ? (
262+ { latestValidSchemaVersion ?. explorer ?. metadataAttributes ?. length ? (
263263 < MetadataFilter options = { latestValidSchemaVersion . explorer . metadataAttributes } />
264264 ) : null }
265265 </ div >
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ function TypeExplorerPageContent(props: {
244244 targetSlug = { props . targetSlug }
245245 variant = "all"
246246 />
247- { latestSchemaVersion ?. explorer ?. metadataAttributes ? (
247+ { latestSchemaVersion ?. explorer ?. metadataAttributes ?. length ? (
248248 < MetadataFilter options = { latestSchemaVersion . explorer . metadataAttributes } />
249249 ) : null }
250250 </ >
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ function ExplorerPageContent(props: {
221221 targetSlug = { props . targetSlug }
222222 variant = "all"
223223 />
224- { latestValidSchemaVersion ?. explorer ?. metadataAttributes ? (
224+ { latestValidSchemaVersion ?. explorer ?. metadataAttributes ?. length ? (
225225 < MetadataFilter options = { latestValidSchemaVersion . explorer . metadataAttributes } />
226226 ) : null }
227227 </ >
You can’t perform that action at this time.
0 commit comments