Skip to content
6 changes: 6 additions & 0 deletions layouts/ddsql_schema/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ <h1 id="pagetitle">{{ .Title }}</h1>
{{ partial "site_support_banner/site_support_banner.html" . }}

<div class="ddsql-schema-single">
{{ if eq .Params.status "deprecated" }}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found the place where we filter out non stable datasets and it's here. This logic should probably be updated to be "status == stable | deprecated" (ie allowlist of known supported statuses in case we want to add more statuses in the future).

<div class="alert alert-warning">
<strong>Deprecated</strong>: This table is deprecated and may return no data.
Comment thread
irenegaunab marked this conversation as resolved.
</div>
{{ end }}

<p>{{ .Params.summary | markdownify }}</p>

{{ highlight .Params.id "" }}
Expand Down
Loading