Skip to content

Commit

Permalink
Task: refine permission column sizes (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome committed May 7, 2020
1 parent ad19062 commit ca7469f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/app/views/query-runner/request/permissions/Permission.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ export class Permission extends Component<IPermissionProps, IPermissionState> {
content={item.consentDescription}
id={hostId}
calloutProps={{ gapSpace: 0 }}
className={classes.tooltipHost}
styles={{
root: { display: 'block'}
}}
>
<span aria-labelledby={hostId}>
{item.consentDescription}
Expand Down Expand Up @@ -195,8 +197,8 @@ export class Permission extends Component<IPermissionProps, IPermissionState> {
name: messages.Description,
fieldName: 'consentDescription',
isResizable: true,
minWidth: (tokenPresent) ? 500 : 650,
maxWidth: (tokenPresent) ? 600 : 700
minWidth: (tokenPresent) ? 400 : 650,
maxWidth: (tokenPresent) ? 500 : 700
}
);
}
Expand Down

0 comments on commit ca7469f

Please sign in to comment.