[WEB-4092] fix:broken detailed empty state layout #7056
This commit is contained in:
parent
534f5c7dd0
commit
084cc75726
1 changed files with 3 additions and 1 deletions
|
|
@ -85,7 +85,9 @@ export const DetailedEmptyState: React.FC<Props> = observer((props) => {
|
|||
{description && <p className="text-sm">{description}</p>}
|
||||
</div>
|
||||
|
||||
{assetPath && <Image src={assetPath} alt={title} width={384} height={250} lazyBoundary="100%" />}
|
||||
{assetPath && (
|
||||
<Image src={assetPath} alt={title} width={384} height={250} layout="responsive" lazyBoundary="100%" />
|
||||
)}
|
||||
|
||||
{hasButtons && (
|
||||
<div className="relative flex items-center justify-center gap-2 flex-shrink-0 w-full">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue