2019-09-17 10:16:34 -04:00
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
duration: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
2019-10-16 05:07:51 -04:00
|
|
|
<div class="log-duration-badge rounded align-self-start px-2 ml-2 flex-shrink-0 ws-normal">
|
2019-09-23 08:06:20 -04:00
|
|
|
{{ duration }}
|
|
|
|
</div>
|
2019-09-17 10:16:34 -04:00
|
|
|
</template>
|