Skip to content

Commit

Permalink
Merge pull request #80 from overture-stack/rc/3.0.2
Browse files Browse the repository at this point in the history
Rc/3.0.2
  • Loading branch information
anncatton authored Feb 24, 2020
2 parents 0ba2577 + 4f6bdc8 commit 91ba9d1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-ui",
"version": "3.0.1",
"version": "3.0.2",
"private": true,
"dependencies": {
"axios": "^0.18.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Associator/PermissionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const PermissionsTable = ({
style={{
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
width: 170,
width: editing ? 165 : 370,
display: 'inline-block',
overflow: 'hidden',
}}
Expand Down
12 changes: 11 additions & 1 deletion src/components/Associator/UserPermissionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@ export default ({ associatedItems }) => (
{associatedItems.map(item => (
<Table.Row key={item.policy.id}>
<Table.Cell>
<span>{item.policy.name}</span>
<span
style={{
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
width: 280,
display: 'inline-block',
overflow: 'hidden',
}}
>
{item.policy.name}
</span>
</Table.Cell>
<Table.Cell collapsing>
<Label style={styles.label}>
Expand Down

0 comments on commit 91ba9d1

Please sign in to comment.