gitlab-org--gitlab-foss/app/assets/javascripts/pipelines/components/error_state.vue
2017-09-22 08:39:47 +00:00

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>