summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/artifacts_block.vue
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-10-10 01:23:54 -0500
committerMike Greiling <mike@pixelcog.com>2018-10-10 02:30:24 -0500
commit9867eaf3efb6102eb81704d815312737c7e444c1 (patch)
tree283c34d3970fe24514deeb3293a0df389fb52a66 /app/assets/javascripts/jobs/components/artifacts_block.vue
parent550f55745a3be5f86bafaf25b3bcc90beba8e2ac (diff)
downloadgitlab-ce-9867eaf3efb6102eb81704d815312737c7e444c1.tar.gz
Prettify issue_show and jobs modules
Diffstat (limited to 'app/assets/javascripts/jobs/components/artifacts_block.vue')
-rw-r--r--app/assets/javascripts/jobs/components/artifacts_block.vue42
1 files changed, 20 insertions, 22 deletions
diff --git a/app/assets/javascripts/jobs/components/artifacts_block.vue b/app/assets/javascripts/jobs/components/artifacts_block.vue
index d5866f9b9f1..17fd5321642 100644
--- a/app/assets/javascripts/jobs/components/artifacts_block.vue
+++ b/app/assets/javascripts/jobs/components/artifacts_block.vue
@@ -1,30 +1,28 @@
<script>
- import TimeagoTooltip from '~/vue_shared/components/time_ago_tooltip.vue';
- import timeagoMixin from '~/vue_shared/mixins/timeago';
+import TimeagoTooltip from '~/vue_shared/components/time_ago_tooltip.vue';
+import timeagoMixin from '~/vue_shared/mixins/timeago';
- export default {
- components: {
- TimeagoTooltip,
+export default {
+ components: {
+ TimeagoTooltip,
+ },
+ mixins: [timeagoMixin],
+ props: {
+ artifact: {
+ type: Object,
+ required: true,
},
- mixins: [
- timeagoMixin,
- ],
- props: {
- artifact: {
- type: Object,
- required: true,
- },
+ },
+ computed: {
+ isExpired() {
+ return this.artifact.expired;
},
- computed: {
- isExpired() {
- return this.artifact.expired;
- },
- // Only when the key is `false` we can render this block
- willExpire() {
- return this.artifact.expired === false;
- },
+ // Only when the key is `false` we can render this block
+ willExpire() {
+ return this.artifact.expired === false;
},
- };
+ },
+};
</script>
<template>
<div class="block">