Merge pull request #7676 from aignatov-bio/ai-sci-10811-ui-blockers

Fix truncate for preview message [SCI-10811]
This commit is contained in:
aignatov-bio 2024-07-09 14:57:12 +02:00 committed by GitHub
commit 1ae48dc683
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -204,9 +204,9 @@ export default {
}
return `
<div class="flex items-center ${color} gap-2.5">
<div title="${message}" class="flex items-center ${color} gap-2.5">
<i class="sn-icon sn-icon-${icon} "></i>
<span>${message}</span>
<span class="truncate">${message}</span>
</div>
`;
}