debian-mirror-gitlab/app/assets/javascripts/environments/components/empty_state.vue

28 lines
623 B
Vue
Raw Normal View History

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