[Fix-13341][Improvement][UI] Worked out the issue with the long name overflowing on the table. (#13342)

This commit is contained in:
calvin 2023-01-05 14:40:45 +08:00 committed by GitHub
parent fde2c8073e
commit 313ba4444f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -29,7 +29,10 @@ export const COLUMN_WIDTH_CONFIG = {
width: 50
},
linkName: {
width: 200
width: 200,
ellipsis: {
tooltip: true
}
},
linkEllipsis: {
style: 'max-width: 180px;line-height: 1.5'

View File

@ -83,7 +83,7 @@ export function useEnvironmentName(
name: t('project.node.environment_name'),
props: {
loading: loading,
clearable: true
clearable: true,
},
options: options
}