Commit aa583f10 authored by Filipa Lacerda's avatar Filipa Lacerda

Next badge must be visible when canary flag is true

parent 406fe0e9
...@@ -147,7 +147,7 @@ function deferredInitialisation() { ...@@ -147,7 +147,7 @@ function deferredInitialisation() {
const canaryBadge = document.querySelector('.js-canary-badge'); const canaryBadge = document.querySelector('.js-canary-badge');
const canaryLink = document.querySelector('.js-canary-link'); const canaryLink = document.querySelector('.js-canary-link');
if (canaryBadge) { if (canaryBadge) {
canaryBadge.classList.add('hidden'); canaryBadge.classList.remove('hidden');
} }
if (canaryLink) { if (canaryLink) {
canaryLink.classList.add('hidden'); canaryLink.classList.add('hidden');
......
...@@ -18,8 +18,9 @@ ...@@ -18,8 +18,9 @@
%span.logo-text.d-none.d-lg-block.prepend-left-8 %span.logo-text.d-none.d-lg-block.prepend-left-8
= logo_text = logo_text
- if Gitlab.com? - if Gitlab.com?
%span.js-canary-badge.badge.badge-pill.green-badge.align-self-center = link_to 'https://next.gitlab.com', class: 'label-link js-canary-badge canary-badge bg-transparent hidden', target: :_blank do
= _('Next') %span.color-label.has-tooltip.badge.badge-pill.green-badge
= _('Next')
- if current_user - if current_user
= render "layouts/nav/dashboard" = render "layouts/nav/dashboard"
......
---
title: Next badge must visible when canary flag is true
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment