We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d2d1fb commit aca31ebCopy full SHA for aca31eb
packages/@vue/cli-ui/src/components/task/ProjectTaskDetails.vue
@@ -4,7 +4,12 @@
4
<div class="header">
5
<VueIcon icon="assignment" class="task-icon big"/>
6
<div class="name">{{ task.name }}</div>
7
- <div class="description">{{ $t(task.description) }}</div>
+ <div
8
+ class="description"
9
+ v-tooltip="$t(task.description)"
10
+ >
11
+ {{ $t(task.description) }}
12
+ </div>
13
<div
14
class="command"
15
v-tooltip="`${$t('org.vue.views.project-task-details.command')}:<br><code>${task.command}</code>`"
@@ -404,7 +409,8 @@ export default {
404
409
.description
405
410
flex 1
406
411
color $color-text-light
407
- margin-left $padding-item
412
+ margin 0 $padding-item
413
+ ellipsis()
408
414
415
.task-settings
416
padding $padding-item
0 commit comments