diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-04-16 16:52:15 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-04-16 16:52:15 +0100 |
commit | a1e4ee960ab7ed34a8535e4fb25049b25e0a6f3b (patch) | |
tree | 0aed4896727a77ce7af843ee2dea81eee80a0489 | |
parent | 68f33e4277995233d5d5ec62863b586c24567a77 (diff) | |
download | gitlab-ce-a1e4ee960ab7ed34a8535e4fb25049b25e0a6f3b.tar.gz |
Make the message break into a new line instead of truncating it
-rw-r--r-- | app/assets/javascripts/vue_shared/components/commit.vue | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/app/assets/javascripts/vue_shared/components/commit.vue b/app/assets/javascripts/vue_shared/components/commit.vue index 03a3339202c..b8875d04488 100644 --- a/app/assets/javascripts/vue_shared/components/commit.vue +++ b/app/assets/javascripts/vue_shared/components/commit.vue @@ -174,9 +174,7 @@ {{ title }} </a> </span> - <span - class="flex-truncate-child" - v-else> + <span v-else> Can't find HEAD commit for this branch </span> </div> diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index 2c840cb407a..60b84b0cb6e 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -14,6 +14,7 @@ .commit-title { margin: 0; + white-space: normal; } .ci-table { |