Welcome to mirror list, hosted at ThFree Co, Russian Federation.

duration_badge.vue « log « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e5dcdcc9021e60d9cc2a938f25c5de5b9cd7311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  props: {
    duration: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="log-duration-badge rounded align-self-start px-2 ml-2 flex-shrink-0 ws-normal">
    {{ duration }}
  </div>
</template>