debian-mirror-gitlab/app/assets/javascripts/issue_show/components/pinned_links.vue

32 lines
654 B
Vue
Raw Normal View History

2019-09-04 21:01:54 +05:30
<script>
import { GlLink } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';
export default {
components: {
Icon,
GlLink,
},
props: {
2019-09-30 21:07:59 +05:30
zoomMeetingUrl: {
2019-09-04 21:01:54 +05:30
type: String,
2019-09-30 21:07:59 +05:30
required: false,
default: null,
2019-09-04 21:01:54 +05:30
},
},
};
</script>
<template>
2019-09-30 21:07:59 +05:30
<div v-if="zoomMeetingUrl" class="border-bottom mb-3 mt-n2">
2019-09-04 21:01:54 +05:30
<gl-link
2019-09-30 21:07:59 +05:30
:href="zoomMeetingUrl"
2019-09-04 21:01:54 +05:30
target="_blank"
class="btn btn-inverted btn-secondary btn-sm text-dark mb-3"
>
<icon name="brand-zoom" :size="14" />
<strong class="vertical-align-top">{{ __('Join Zoom meeting') }}</strong>
</gl-link>
</div>
</template>