forked from github/dataease
fix(数据源): API数据源表单名称过长创建成功后显示样式超出显示范围
This commit is contained in:
parent
a19c3548c7
commit
55133d49dc
@ -1273,7 +1273,9 @@ const getMenuList = (val: boolean) => {
|
|||||||
<div v-for="api in nodeInfo.apiConfiguration" :key="api.id" class="api-card">
|
<div v-for="api in nodeInfo.apiConfiguration" :key="api.id" class="api-card">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="19">
|
<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">{{
|
<span v-if="api.status === 'Error'" class="de-tag error-color">{{
|
||||||
t('datasource.invalid')
|
t('datasource.invalid')
|
||||||
}}</span>
|
}}</span>
|
||||||
@ -1693,6 +1695,7 @@ const getMenuList = (val: boolean) => {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
|
display: inline-flex;
|
||||||
}
|
}
|
||||||
.req-title,
|
.req-title,
|
||||||
.req-value {
|
.req-value {
|
||||||
|
Loading…
Reference in New Issue
Block a user