30 lines
463 B
Vue
30 lines
463 B
Vue
|
<script>
|
||
|
import icon from '~/vue_shared/components/icon.vue';
|
||
|
import tooltip from '../../vue_shared/directives/tooltip';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
icon,
|
||
|
},
|
||
|
directives: {
|
||
|
tooltip,
|
||
|
},
|
||
|
props: {
|
||
|
file: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<icon
|
||
|
name="git-merge"
|
||
|
v-tooltip
|
||
|
title="Part of merge request changes"
|
||
|
css-classes="ide-file-changed-icon"
|
||
|
:size="12"
|
||
|
/>
|
||
|
</template>
|