Skip to content

Commit 09e802a

Browse files
authored
Dev 1.11.0 webank (apache#749)
* chore: 1.9.0 * feat: 1.10.0 * fix * upd: 新增loading展示 * fix: udf类型判断条件修复 * fix: 注册函数展示逻辑修复 * upd: 函数管理新增/编辑支持kill引擎 * upd: license缩进调整 * upd: 函数管理交互更新 * fix * fix: terminal插件获取新的诊断日志时先清空重置 * fix: 函数管理新增文件后缀名校验 * chore: 1.11.0 * upd: 租户标签长度限制100 * upd: 脚本拆分 * upd: 文案修改 * upd: 资源管理后台数据结构更改 * upd: tag样式优化
1 parent 43650a0 commit 09e802a

File tree

1 file changed

+14
-6
lines changed
  • linkis-web/src/apps/linkis/components/tag

1 file changed

+14
-6
lines changed

linkis-web/src/apps/linkis/components/tag/index.vue

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@
2525
>
2626
<Tag
2727
ref="tag"
28-
style="
29-
white-space: nowrap;
30-
text-overflow: ellipsis;
31-
overflow: hidden;
32-
max-width: 300px;"
3328
v-if="
3429
!clickValue.includes(`${item.key}${item.value}`)
3530
"
@@ -40,7 +35,20 @@
4035
:color="item.modifiable ? 'primary' : 'default'"
4136
@on-close="handleClose2"
4237
@on-change="handleTagChange"
43-
>{{ item.key }}{{ item.key ? '-' : '' }}{{ item.value }}
38+
>
39+
<span
40+
style="
41+
display: inline-block;
42+
white-space: nowrap;
43+
text-overflow: ellipsis;
44+
overflow: hidden;
45+
max-width: 270px;
46+
height: 14px;
47+
line-height: 14px;
48+
vertical-align: middle;
49+
margin-bottom: 2px">
50+
{{ item.key }}{{ item.key ? '-' : '' }}{{ item.value }}
51+
</span>
4452
</Tag>
4553
<!-- Edit tags(编辑标签) -->
4654
<div class="addAndCancel" v-else>

0 commit comments

Comments
 (0)