|
|
@@ -94,7 +94,7 @@
|
|
|
@change="openNameTree"
|
|
|
placeholder="Select"
|
|
|
size="small"
|
|
|
- style="width: 105px"
|
|
|
+ style="width: 150px"
|
|
|
multiple
|
|
|
collapse-tags
|
|
|
collapse-tags-tooltip
|
|
|
@@ -118,7 +118,7 @@
|
|
|
:content="editDetails.textToPush"
|
|
|
placement="bottom"
|
|
|
>
|
|
|
- <el-input disabled style="width: 364px; margin-left: 30px; margin-top: 4px" :placeholder="textToshow" />
|
|
|
+ <el-input disabled style="width: 409px; margin-left: 30px; margin-top: 4px" :placeholder="textToshow" />
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
<el-dialog
|
|
|
@@ -161,14 +161,14 @@
|
|
|
});
|
|
|
|
|
|
const textToshow = computed(() => {
|
|
|
- if (editDetails.value.textToPush.length > 24) {
|
|
|
- return editDetails.value.textToPush.slice(0, 24) + '...';
|
|
|
+ if (editDetails.value.textToPush.length > 28) {
|
|
|
+ return editDetails.value.textToPush.slice(0, 28) + '...';
|
|
|
} else {
|
|
|
return editDetails.value.textToPush;
|
|
|
}
|
|
|
});
|
|
|
const showToolTip = computed(() => {
|
|
|
- if (editDetails.value.textToPush.length > 20) {
|
|
|
+ if (editDetails.value.textToPush.length > 28) {
|
|
|
return true;
|
|
|
} else {
|
|
|
return false;
|