Update external link icon in merge request widget

This commit is contained in:
George Tsiolis 2018-06-25 17:58:02 +03:00
parent 87f7597a4f
commit b4267aaa8b
3 changed files with 15 additions and 5 deletions

View File

@ -1,4 +1,5 @@
<script>
import Icon from '~/vue_shared/components/icon.vue';
import timeagoMixin from '../../vue_shared/mixins/timeago';
import tooltip from '../../vue_shared/directives/tooltip';
import LoadingButton from '../../vue_shared/components/loading_button.vue';
@ -14,6 +15,7 @@ export default {
LoadingButton,
MemoryUsage,
StatusIcon,
Icon,
},
directives: {
tooltip,
@ -110,11 +112,10 @@ export default {
class="deploy-link js-deploy-url"
>
{{ deployment.external_url_formatted }}
<i
class="fa fa-external-link"
aria-hidden="true"
>
</i>
<icon
:size="16"
name="external-link"
/>
</a>
</template>
<span

View File

@ -737,6 +737,10 @@
> *:not(:last-child) {
margin-right: .3em;
}
svg {
vertical-align: text-top;
}
}
.deploy-link {

View File

@ -0,0 +1,5 @@
---
title: Update external link icon in merge request widget
merge_request: 20154
author: George Tsiolis
type: changed