Skip to content

Commit

Permalink
Fixed the Mapping of Admin page colums fixed the styling issue with b…
Browse files Browse the repository at this point in the history
…ounty Title
  • Loading branch information
gouravmpk committed Feb 14, 2024
1 parent 1ea5e29 commit e358bb2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/superadmin/tableComponent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -485,26 +485,26 @@ export const MyTable = ({
target="_blank"
rel="noopener noreferrer"
>
{bounty?.title}
{bounty?.title.length > 50 ? `${bounty?.title.substring(0, 47)}...` : bounty?.title}
</a>
</BountyData>
<TableData>{created}</TableData>
<TableDataCenter>{time_to_pay}</TableDataCenter>
<TableDataAlternative>
<ImageWithText
text={bounty?.assignee}
text={bounty?.assignee_alias}
image={bounty?.assignee_img || defaultPic}
/>
</TableDataAlternative>
<TableDataAlternative className="address">
<ImageWithText
text={bounty?.owner_pubkey}
image={bounty?.providerImage || defaultPic}
text={bounty?.owner_unique_name}
image={bounty?.owner_img || defaultPic}
/>
</TableDataAlternative>
<TableData className="organization">
<ImageWithText
text={bounty?.organization}
text={bounty?.organization_name}
image={bounty?.organization_img || defaultPic}
/>
</TableData>
Expand Down

0 comments on commit e358bb2

Please sign in to comment.