Commit cbd08095 authored by Miguel Rincon's avatar Miguel Rincon

Merge branch 'jivanvl-change-pipeline-actions-name' into 'master'

Rename pipeline_actions component

See merge request gitlab-org/gitlab!54994
parents 2dc019ff a351fe68
......@@ -6,8 +6,8 @@ import CommitComponent from '~/vue_shared/components/commit.vue';
import eventHub from '../../event_hub';
import PipelineTriggerer from './pipeline_triggerer.vue';
import PipelineUrl from './pipeline_url.vue';
import PipelinesActionsComponent from './pipelines_actions.vue';
import PipelinesArtifactsComponent from './pipelines_artifacts.vue';
import PipelinesManualActionsComponent from './pipelines_manual_actions.vue';
import PipelineStage from './stage.vue';
import PipelinesTimeago from './time_ago.vue';
......@@ -21,7 +21,7 @@ export default {
GlModalDirective,
},
components: {
PipelinesActionsComponent,
PipelinesManualActionsComponent,
PipelinesArtifactsComponent,
CommitComponent,
PipelineStage,
......@@ -242,7 +242,7 @@ export default {
class="table-section section-20 table-button-footer pipeline-actions"
>
<div class="btn-group table-action-buttons">
<pipelines-actions-component v-if="actions.length > 0" :actions="actions" />
<pipelines-manual-actions-component v-if="actions.length > 0" :actions="actions" />
<pipelines-artifacts-component
v-if="pipeline.details.artifacts.length"
......
......@@ -5,7 +5,7 @@ import waitForPromises from 'helpers/wait_for_promises';
import { TEST_HOST } from 'spec/test_constants';
import createFlash from '~/flash';
import axios from '~/lib/utils/axios_utils';
import PipelinesActions from '~/pipelines/components/pipelines_list/pipelines_actions.vue';
import PipelinesManualActions from '~/pipelines/components/pipelines_list/pipelines_manual_actions.vue';
import GlCountdown from '~/vue_shared/components/gl_countdown.vue';
jest.mock('~/flash');
......@@ -15,7 +15,7 @@ describe('Pipelines Actions dropdown', () => {
let mock;
const createComponent = (props, mountFn = shallowMount) => {
wrapper = mountFn(PipelinesActions, {
wrapper = mountFn(PipelinesManualActions, {
propsData: {
...props,
},
......
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