2017-11-23 07:04:03 -05:00
|
|
|
<script>
|
2018-10-10 02:18:49 -04:00
|
|
|
export default {
|
|
|
|
name: 'EnvironmentsEmptyState',
|
|
|
|
props: {
|
|
|
|
helpPath: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2017-11-23 07:04:03 -05:00
|
|
|
</script>
|
|
|
|
<template>
|
2018-10-11 13:10:20 -04:00
|
|
|
<div class="empty-state">
|
|
|
|
<div class="text-content">
|
|
|
|
<h4 class="blank-state-title js-blank-state-title">
|
|
|
|
{{ s__("Environments|You don't have any environments right now") }}
|
|
|
|
</h4>
|
2017-11-23 07:04:03 -05:00
|
|
|
<p class="blank-state-text">
|
2018-11-16 15:07:38 -05:00
|
|
|
{{
|
|
|
|
s__(`Environments|Environments are places where
|
|
|
|
code gets deployed, such as staging or production.`)
|
|
|
|
}}
|
2020-07-03 17:09:31 -04:00
|
|
|
<a :href="helpPath"> {{ s__('Environments|More information') }} </a>
|
2017-11-23 07:04:03 -05:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|