change payment method text, change resolution view for global search item
This commit is contained in:
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>
|
||||
|
||||
Reference in New Issue
Block a user