change payment method text, change resolution view for global search item

This commit is contained in:
smanylov
2026-03-14 14:01:39 +07:00
parent d54a8bfe60
commit 2774b7eab6
3 changed files with 18 additions and 8 deletions
File diff suppressed because one or more lines are too long
@@ -21,11 +21,13 @@ export function SearchedGlobalFilesList({ list }: { list: SearchItem[] }) {
{item?.pageTitle}
</div>
<div className="global-result-meta">
{item?.height & item?.width && (
<div className="global-result-size">
{item?.height}x{item?.width}
</div>
)}
{(item?.height && item?.width) &&
item.height !== 0 &&
item.width !== 0 && (
<div className="global-result-size">
{item.height}x{item.width}
</div>
)}
<div className="global-result-host">
{item?.host}
</div>