diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-07-12 10:26:57 -0700 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-07-12 10:26:57 -0700 |
commit | 4430afc18c19cfdb36137f28e62d4e41e29d6e53 (patch) | |
tree | 9efc20b97d15a23d1266805bb00fc5583259eb41 /app | |
parent | 3bce3014d5b81ab71352e584d48b74d7468c11e7 (diff) | |
download | gitlab-ce-4430afc18c19cfdb36137f28e62d4e41e29d6e53.tar.gz |
Truncate job on environment view34835-environment-truncate-job
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/environments/components/environment_item.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/environments/components/environment_item.vue b/app/assets/javascripts/environments/components/environment_item.vue index b25113e0fc6..d8b1b2f1b92 100644 --- a/app/assets/javascripts/environments/components/environment_item.vue +++ b/app/assets/javascripts/environments/components/environment_item.vue @@ -498,9 +498,9 @@ export default { <div class="table-section section-15 hidden-xs hidden-sm" role="gridcell"> <a v-if="shouldRenderBuildName" - class="build-link" + class="build-link flex-truncate-parent" :href="buildPath"> - {{buildName}} + <span class="flex-truncate-child">{{buildName}}</span> </a> </div> |