debian-mirror-gitlab/app/assets/javascripts/pipelines/components/error_state.vue
2018-03-17 18:26:18 +05:30

26 lines
497 B
Vue

<script>
export default {
props: {
errorStateSvgPath: {
type: String,
required: true,
},
},
};
</script>
<template>
<div class="row empty-state js-pipelines-error-state">
<div class="col-xs-12">
<div class="svg-content">
<img :src="errorStateSvgPath"/>
</div>
</div>
<div class="col-xs-12 text-center">
<div class="text-content">
<h4>The API failed to fetch the pipelines.</h4>
</div>
</div>
</div>
</template>