Skip to content

Commit

Permalink
fix: Temp fix - allow wider field names in hidden fields dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaclennan committed Oct 7, 2019
1 parent 79d1fa4 commit a7a6169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ReportView/HideFieldsButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const useStyles = makeStyles(theme => {
paddingRight: 48
},
fieldname: {
maxWidth: 250,
maxWidth: 300,
textOverflow: 'ellipsis',
overflow: 'hidden',
whiteSpace: 'nowrap'
Expand Down
2 changes: 1 addition & 1 deletion src/ReportView/HideFieldsButton.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { action } from '@storybook/addon-actions'
import HideFieldsButton from './HideFieldsButton'

const initialFieldState = [
{ id: 'foo', hidden: false, label: 'Foo' },
{ id: 'foo', hidden: false, label: 'Long field name that extends beyond' },
{ id: 'bar', hidden: true, label: 'Bar' },
{ id: 'qux', hidden: false, label: 'Qux' }
]
Expand Down

0 comments on commit a7a6169

Please sign in to comment.