Skip to content

Commit

Permalink
resultView: fix truncateed description
Browse files Browse the repository at this point in the history
  • Loading branch information
jrcastro2 committed Jan 31, 2025
1 parent f902b21 commit 4a04a44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class RecordsResultsListItem extends Component {
numOtherVersions={numOtherVersions}
>
<Item key={key ?? result.id}>
<Item.Content>
<Item.Content className="max-width-100">
{/* FIXME: Uncomment to enable themed banner */}
{/* <DisplayVerifiedCommunity communities={result.parent?.communities} /> */}
<Item.Extra className="labels-actions">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const ComputerTabletUploadsItem = ({
<Item.Extra>{icon}</Item.Extra>
</Item.Content>
</div>
<Item.Content>
<Item.Content className="max-width-100">
{/* FIXME: Uncomment to enable themed banner */}
{/* <DisplayVerifiedCommunity communities={result.parent?.communities} /> */}
<Item.Extra className="labels-actions">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const MobileUploadsItem = ({

return (
<Item key={result.id} className="deposits-list-item mobile only flex">
<Item.Content className="centered">
<Item.Content className="centered max-width-100">
{/* FIXME: Uncomment to enable themed banner */}
{/* <DisplayVerifiedCommunity communities={result.parent?.communities} /> */}
<Item.Extra className="labels-actions">
Expand Down

0 comments on commit 4a04a44

Please sign in to comment.