summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/pipelines_table.vue
diff options
context:
space:
mode:
authorShah El-Rahman <selrahman@gitlab.com>2018-02-06 21:05:54 -0600
committerShah El-Rahman <selrahman@gitlab.com>2018-02-07 19:28:18 -0600
commit97f08c651e0c95e33dee4a529ff80472e7d3bbe4 (patch)
treeddd00533a9879daca6a9ed7e449a47e99fb8cfef /app/assets/javascripts/pipelines/components/pipelines_table.vue
parentd2a2f22fe6b2e93630b32bc699d091720b01b6d3 (diff)
downloadgitlab-ce-97f08c651e0c95e33dee4a529ff80472e7d3bbe4.tar.gz
Add modal for stopping and retrying pipelines41297-new-design-for-cancel-stop-pipeline-confirmation
Fix tests Address code review feedback Fix tests
Diffstat (limited to 'app/assets/javascripts/pipelines/components/pipelines_table.vue')
-rw-r--r--app/assets/javascripts/pipelines/components/pipelines_table.vue6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipelines/components/pipelines_table.vue b/app/assets/javascripts/pipelines/components/pipelines_table.vue
index 6681b89e629..62fe479fdf4 100644
--- a/app/assets/javascripts/pipelines/components/pipelines_table.vue
+++ b/app/assets/javascripts/pipelines/components/pipelines_table.vue
@@ -1,5 +1,7 @@
<script>
import pipelinesTableRowComponent from './pipelines_table_row.vue';
+ import stopConfirmationModal from './stop_confirmation_modal.vue';
+ import retryConfirmationModal from './retry_confirmation_modal.vue';
/**
* Pipelines Table Component.
@@ -9,6 +11,8 @@
export default {
components: {
pipelinesTableRowComponent,
+ stopConfirmationModal,
+ retryConfirmationModal,
},
props: {
pipelines: {
@@ -70,5 +74,7 @@
:auto-devops-help-path="autoDevopsHelpPath"
:view-type="viewType"
/>
+ <stop-confirmation-modal />
+ <retry-confirmation-modal />
</div>
</template>