diff --git a/ee/app/assets/javascripts/dependencies/components/dependencies_table.vue b/ee/app/assets/javascripts/dependencies/components/dependencies_table.vue index 7e0be2b0927c55a79c4be20af1a13be9bf3373a1..cade22c41b5347bf71e4912359679af18e4b06be 100644 --- a/ee/app/assets/javascripts/dependencies/components/dependencies_table.vue +++ b/ee/app/assets/javascripts/dependencies/components/dependencies_table.vue @@ -11,7 +11,6 @@ import { } from '@gitlab/ui'; import { cloneDeep } from 'lodash'; import { DOCS_URL_IN_EE_DIR } from 'jh_else_ce/lib/utils/url_utility'; -import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; import { NAMESPACE_PROJECT, DEPENDENCIES_TABLE_I18N } from '../constants'; import DependencyLicenseLinks from './dependency_license_links.vue'; import DependencyLocation from './dependency_location.vue'; @@ -65,7 +64,6 @@ export default { GlLink, GlLoadingIcon, }, - mixins: [glFeatureFlagsMixin()], inject: ['namespaceType'], props: { dependencies: { @@ -108,9 +106,6 @@ export default { showDrawer() { return this.drawerId !== null; }, - showVulnerabilitiesInfo() { - return this.glFeatures.hideNoLongerDetectedVulnerabilitiesOnTheDependencyList; - }, }, methods: { // The GlTable component mutates the `_showDetails` property on items @@ -220,18 +215,16 @@ export default {