2021-11-18 22:05:49 +05:30
|
|
|
<script>
|
|
|
|
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
runner: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
getIdFromGraphQLId,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
2022-10-11 01:57:18 +05:30
|
|
|
<span class="gl-font-weight-bold gl-vertical-align-middle"
|
|
|
|
>#{{ getIdFromGraphQLId(runner.id) }} ({{ runner.shortSha }})</span
|
|
|
|
>
|
2021-11-18 22:05:49 +05:30
|
|
|
</template>
|