Merge pull request #10294 from dataease/pr@dev-v2_st

fix(数据源): API数据源表单名称过长创建成功后显示样式超出显示范围
This commit is contained in:
dataeaseShu 2024-06-14 16:26:55 +08:00 committed by GitHub
commit ba14b39b47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1273,7 +1273,9 @@ const getMenuList = (val: boolean) => {
<div v-for="api in nodeInfo.apiConfiguration" :key="api.id" class="api-card">
<el-row>
<el-col :span="19">
<span class="name ellipsis">{{ api.name }}</span>
<span class="name">
<span class="ellipsis" :title="api.name">{{ api.name }}</span>
</span>
<span v-if="api.status === 'Error'" class="de-tag error-color">{{
t('datasource.invalid')
}}</span>
@ -1693,6 +1695,7 @@ const getMenuList = (val: boolean) => {
font-weight: 500;
margin-right: 8px;
max-width: 80%;
display: inline-flex;
}
.req-title,
.req-value {