Skip to content

Commit

Permalink
Merge pull request #1303 from matiasbenary/fix/style-correction-in-wa…
Browse files Browse the repository at this point in the history
…llet-utilities

fix: broken styles for firefox in wallet utilities
  • Loading branch information
gagdiez authored Sep 5, 2024
2 parents 61e73e1 + 05c255d commit 4a64c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/wallet-utilities/KeyTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ const KeyTable: React.FC = () => {
</Table.Cell>
<Table.Cell>
<Tooltip content={data.access_key.permission.FunctionCall?.receiver_id ?? 'N/A'}>
<Text style={{ minWidth: '5rem' }} clampLines={1}>
<Text style={{ minWidth: '5rem', whiteSpace: 'pre-wrap' }} clampLines={1}>
{data.access_key.permission.FunctionCall?.receiver_id ?? 'N/A'}
</Text>
</Tooltip>
</Table.Cell>
<Table.Cell>
<Tooltip content={data.public_key}>
<Text style={{ minWidth: '5rem' }} clampLines={1}>
<Text style={{ minWidth: '5rem', whiteSpace: 'pre-wrap' }} clampLines={1}>
{data.public_key}
</Text>
</Tooltip>
Expand Down

0 comments on commit 4a64c38

Please sign in to comment.