Commit 457f9f4f authored by Coung Ngo's avatar Coung Ngo

Fix labels picker text overflow

Very long words in the labels picker creates
a horizontal scrollbar, which is unwanted.
This commit wraps long words to void overflow.

Changelog: fixed
parent 15fea945
...@@ -178,7 +178,7 @@ export default { ...@@ -178,7 +178,7 @@ export default {
class="labels-fetch-loading gl-align-items-center w-100 h-100" class="labels-fetch-loading gl-align-items-center w-100 h-100"
size="md" size="md"
/> />
<ul v-else class="list-unstyled mb-0"> <ul v-else class="list-unstyled gl-mb-0 gl-word-break-word">
<label-item <label-item
v-for="(label, index) in visibleLabels" v-for="(label, index) in visibleLabels"
:key="label.id" :key="label.id"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment