We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6abf2ad commit 6e2a20bCopy full SHA for 6e2a20b
packages/app-builder/src/components/Sanctions/MatchResult.tsx
@@ -15,7 +15,9 @@ export function MatchResult({ entity }: { entity: SanctionCheckMatchPayload }) {
15
return (
16
<div className="text-s bg-grey-98 flex items-center rounded">
17
<div className="flex items-center gap-2 p-4">
18
- <span className="truncate font-semibold">{entity.caption}</span>
+ <span className="max-w-60 truncate font-semibold">
19
+ {entity.caption}
20
+ </span>
21
<span>{t(`sanctions:entity.schema.${entitySchema}`)}</span>
22
<Tag color="grey" className="shrink-0">
23
{t('sanctions:match.similarity', {
0 commit comments