Display framework name below badge on trust center
Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
@@ -116,12 +116,17 @@ export function AuditRowAvatar(props: { audit: AuditRowFragment$key }) {
|
|||||||
className="block cursor-pointer aspect-square"
|
className="block cursor-pointer aspect-square"
|
||||||
title={`Logo ${audit.framework.name}`}
|
title={`Logo ${audit.framework.name}`}
|
||||||
>
|
>
|
||||||
<FrameworkLogo
|
<div className="flex flex-col gap-2 items-center w-19">
|
||||||
className="size-19"
|
<FrameworkLogo
|
||||||
lightLogoURL={audit.framework.lightLogoURL}
|
className="size-19"
|
||||||
darkLogoURL={audit.framework.darkLogoURL}
|
lightLogoURL={audit.framework.lightLogoURL}
|
||||||
name={audit.framework.name}
|
darkLogoURL={audit.framework.darkLogoURL}
|
||||||
/>
|
name={audit.framework.name}
|
||||||
|
/>
|
||||||
|
<div className="txt-primary text-xs font-semibold max-w-19 overflow-hidden min-w-0 whitespace-nowrap text-ellipsis">
|
||||||
|
{audit.framework.name}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</AuditDialog>
|
</AuditDialog>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user