Skip to content

Commit 48aa20c

Browse files
Add banner linking to Grafana docs (#1432)
1 parent b46e15f commit 48aa20c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

gatsby-config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require('dotenv').config({
77
path: `.env.${process.env.NODE_ENV}`,
88
});
99

10-
const shouldAnnouncementBannerBeShown = false;
10+
const shouldAnnouncementBannerBeShown = true;
1111

1212
const plugins = [
1313
'gatsby-transformer-sharp',
@@ -186,10 +186,10 @@ if (shouldAnnouncementBannerBeShown) {
186186
),
187187
text:
188188
// eslint-disable-next-line max-len
189-
'🎉 We are excited to announce that, starting on July 25th at 14:00 UTC, we will merge the k6 community forum with the Grafana community forum',
189+
'🎉 We have migrated the docs to the Grafana website! To check out the docs for the latest version of k6, head over to grafana.com/docs/k6.',
190190
link:
191191
// eslint-disable-next-line max-len
192-
'https://k6.io/blog/k6-forum-migration/',
192+
'https://grafana.com/docs/k6/latest/',
193193
buttonText: 'Learn more',
194194
},
195195
// settings below have to match
@@ -204,7 +204,7 @@ if (shouldAnnouncementBannerBeShown) {
204204
},
205205
storage: {
206206
// changing storage name to force users to see the banner even if it was disabled
207-
name: 'k6-sb-was-shown',
207+
name: 'k6-db-was-shown',
208208
},
209209
};
210210
if (isProduction) {

0 commit comments

Comments
 (0)