diff --git a/ee/app/assets/javascripts/dependencies/components/app.vue b/ee/app/assets/javascripts/dependencies/components/app.vue index 8ec6be6831dd837c69a4c500b1919b266540acc4..34a8cf55870e182b30f719cd2d768280671841d4 100644 --- a/ee/app/assets/javascripts/dependencies/components/app.vue +++ b/ee/app/assets/javascripts/dependencies/components/app.vue @@ -13,11 +13,7 @@ import { mapActions, mapGetters, mapState } from 'vuex'; import { __, s__ } from '~/locale'; import { DEPENDENCY_LIST_TYPES } from '../store/constants'; import { NAMESPACE_PROJECT } from '../constants'; -import { - REPORT_STATUS, - SORT_FIELD_SEVERITY, - SORT_FIELD_PACKAGER, -} from '../store/modules/list/constants'; +import { REPORT_STATUS, SORT_FIELD_SEVERITY } from '../store/modules/list/constants'; import DependenciesActions from './dependencies_actions.vue'; import DependencyListIncompleteAlert from './dependency_list_incomplete_alert.vue'; import DependencyListJobFailedAlert from './dependency_list_job_failed_alert.vue'; @@ -124,7 +120,7 @@ export default { created() { this.setDependenciesEndpoint(this.endpoint); this.setExportDependenciesEndpoint(this.exportEndpoint); - this.setSortField(this.isProjectNamespace ? SORT_FIELD_SEVERITY : SORT_FIELD_PACKAGER); + this.setSortField(SORT_FIELD_SEVERITY); }, methods: { ...mapActions([ diff --git a/ee/app/assets/javascripts/dependencies/store/modules/list/constants.js b/ee/app/assets/javascripts/dependencies/store/modules/list/constants.js index 128c912d473da64b377887781f54b21b48489764..b6ee6f20cbd090c7da8a7adf2d225418c5bccde2 100644 --- a/ee/app/assets/javascripts/dependencies/store/modules/list/constants.js +++ b/ee/app/assets/javascripts/dependencies/store/modules/list/constants.js @@ -23,6 +23,7 @@ export const SORT_FIELDS_GROUP = pick(SORT_FIELDS, [ SORT_FIELD_NAME, SORT_FIELD_PACKAGER, SORT_FIELD_LICENSE, + SORT_FIELD_SEVERITY, ]); export const SORT_ASCENDING = 'asc'; diff --git a/ee/spec/frontend/dependencies/components/app_spec.js b/ee/spec/frontend/dependencies/components/app_spec.js index e7a029fe56e1aa422879197ad699b142b7272b1e..dfabcfb1f1904499b9ec0b8642cb31612bde088d 100644 --- a/ee/spec/frontend/dependencies/components/app_spec.js +++ b/ee/spec/frontend/dependencies/components/app_spec.js @@ -174,9 +174,9 @@ describe('DependenciesApp component', () => { factory({ provide: { namespaceType: 'group' } }); }); - it('dispatches setSortField with packager', () => { + it('dispatches setSortField with severity', () => { expect(store.dispatch.mock.calls).toEqual( - expect.arrayContaining([['setSortField', 'packager']]), + expect.arrayContaining([['setSortField', 'severity']]), ); }); });