Skip to content

Commit 050c971

Browse files
authored
updated explorer messaging from beta to ga (#6152)
1 parent a85eb32 commit 050c971

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

assets/styles/layouts/article/_blocks.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ blockquote {
9797
"blocks/important",
9898
"blocks/warning",
9999
"blocks/caution",
100-
"blocks/beta";
100+
"blocks/special-state";

assets/styles/layouts/article/blocks/_beta.scss renamed to assets/styles/layouts/article/blocks/_special-state.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
.block.beta {
1+
.block.special-state {
22
@include gradient($grad-burningDusk);
33
padding: 4px;
44
border: none;
55
border-radius: 25px !important;
66

7-
.beta-content {
7+
.state-content {
88
background: $article-bg;
99
border-radius: 21px;
1010
padding: calc(1.65rem - 4px) calc(2rem - 4px) calc(.1rem + 4px) calc(2rem - 4px);

layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ <h4>Tools</h4>
111111
<div class="products">
112112
<div class="product">
113113
<div class="product-info">
114-
<h3 state="beta"><a href="/influxdb3/explorer/">InfluxDB 3 Explorer</a></h3>
114+
<h3 state="New"><a href="/influxdb3/explorer/">InfluxDB 3 Explorer</a></h3>
115115
<p>A standalone UI designed for visualizing, querying, and managing data in InfluxDB 3 Core and Enterprise.</p>
116116
</div>
117117
<ul class="product-links">

layouts/partials/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h1>{{ .Title | .RenderString }}</h1>
55
{{ partial "article/supported-versions.html" . }}
66
{{ partial "article/page-meta.html" . }}
77
</div>
8-
{{ partial "article/beta.html" . }}
8+
{{ partial "article/special-state.html" . }}
99
{{ partial "article/stable-version.html" . }}
1010
{{ partial "article/flux-experimental.html" . }}
1111
{{ partial "article/flux-contrib.html" . }}

layouts/partials/article/beta.html renamed to layouts/partials/article/special-state.html

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,23 @@
88
{{ $earlyAccessList := slice "influxdb3/explorer" }}
99

1010
{{ if in $earlyAccessList (print $product "/" $version )}}
11-
<div class="block beta">
12-
<div class="beta-content">
13-
<h4 id="public-beta">{{ $displayName }} is in Public Beta</h4>
11+
<div class="block special-state">
12+
<div class="state-content">
13+
<h4 id="influxdb3-explorer-ga">{{ $displayName }} is Generally Available</h4>
1414
<p>
15-
{{ $displayName }} is in public beta and available for testing and feedback,
16-
but is <strong>not meant for production use yet</strong>.
17-
Both the product and this documentation are works in progress.
18-
We welcome and encourage your input about your experience with the beta and
15+
{{ $displayName }} is generally available and is ready for production use.
16+
We welcome and encourage your input about your experience with Explorer and
1917
invite you to <strong>join our public channels</strong> for updates and to
2018
share feedback.
2119
</p>
20+
<p>
21+
<em>The {{ $displayName}} documentation is a work in progress, and we are actively
22+
working to improve it. If you have any questions or suggestions, please
23+
<a href="https://github.com/influxdata/docs-v2/issues/new?labels=InfluxDB%203%20Explorer">submit an issue</a>.
24+
We welcome any and all contributions.</em>
25+
</p>
2226
<div class="expand-wrapper">
23-
<div class="expand" id="beta-feedback-channels">
27+
<div class="expand" id="feedback-channels">
2428
<p class="expand-label">
2529
<span class="expand-toggle"></span><span>Join our public channels</span>
2630
</p>

layouts/partials/topnav/product-selector.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<li>{{ template "productLink" (merge (dict "productPath" "influxdb3/cloud-dedicated") $templateDefaults) }}</li>
6161
</ul>
6262
<ul class="item-list products" data-category="Tools">
63-
<li>{{ template "productLink" (merge (dict "productPath" "influxdb3/explorer" "state" "beta") $templateDefaults) }}</li>
63+
<li>{{ template "productLink" (merge (dict "productPath" "influxdb3/explorer" "state" "New") $templateDefaults) }}</li>
6464
</ul>
6565
</div>
6666
<div class="product-group">

0 commit comments

Comments
 (0)