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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/environments/environment_details/deployments_table.vue')
-rw-r--r--app/assets/javascripts/environments/environment_details/deployments_table.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/javascripts/environments/environment_details/deployments_table.vue b/app/assets/javascripts/environments/environment_details/deployments_table.vue
index 261d8106438..e46411f4d2c 100644
--- a/app/assets/javascripts/environments/environment_details/deployments_table.vue
+++ b/app/assets/javascripts/environments/environment_details/deployments_table.vue
@@ -48,12 +48,17 @@ export default {
<deployment-job :job="item.job" />
</template>
<template #cell(created)="{ item }">
- <time-ago-tooltip :time="item.created" data-testid="deployment-created-at" />
+ <time-ago-tooltip
+ :time="item.created"
+ enable-truncation
+ data-testid="deployment-created-at"
+ />
</template>
<template #cell(deployed)="{ item }">
<time-ago-tooltip
v-if="item.deployed"
:time="item.deployed"
+ enable-truncation
data-testid="deployment-deployed-at"
/>
</template>