Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Pereira <rpereira@gitlab.com>2019-06-12 22:20:22 +0300
committerMike Greiling <mike@pixelcog.com>2019-06-12 22:20:22 +0300
commita4e320a42c1d1b973719e27e0ebc9fc96c173a03 (patch)
tree007779f6b7e74f293ad73212629b8617fc4a4fdd /app/assets/javascripts/operation_settings
parentb98633ade38bb75d750608f422c9fbc4b4080909 (diff)
Remove the grafana_dashboard_link feature flag
Diffstat (limited to 'app/assets/javascripts/operation_settings')
-rw-r--r--app/assets/javascripts/operation_settings/index.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/assets/javascripts/operation_settings/index.js b/app/assets/javascripts/operation_settings/index.js
index 6946578e6d2..f075291ce98 100644
--- a/app/assets/javascripts/operation_settings/index.js
+++ b/app/assets/javascripts/operation_settings/index.js
@@ -3,14 +3,6 @@ import store from './store';
import ExternalDashboardForm from './components/external_dashboard.vue';
export default () => {
- /**
- * This check can be removed when we remove
- * the :grafana_dashboard_link feature flag
- */
- if (!gon.features.grafanaDashboardLink) {
- return null;
- }
-
const el = document.querySelector('.js-operation-settings');
return new Vue({