We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07d604 commit eb77d10Copy full SHA for eb77d10
docs/website/layouts/partials/docs/dashboard-panel.html
@@ -55,7 +55,7 @@
55
<div class="dropdown-menu">
56
<div class="dropdown-content has-text-left">
57
{{ range $releases }}
58
- {{ if ne . "latest" }}
+ {{ if and (ne . "latest") (ne . "edge") }}
59
{{ $isLatest := eq . (index site.Data.releases 1) }}
60
{{ $verRef := . }}
61
{{ if $isLatest }}
@@ -73,6 +73,10 @@
73
</a>
74
{{ end }}
75
76
+ <!-- edge is handled specially since we do not have a archive site for it-->
77
+ <a href="https://www.openpolicyagent.org/docs/edge/" class="dropdown-item">
78
+ edge
79
+ </a>
80
</div>
81
82
0 commit comments