Skip to content
Snippets Groups Projects
Commit 6c42ca90 authored by esikkala's avatar esikkala
Browse files

Facet dialog: disable focus when closed

parent cde96fea
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ class FacetDialog extends React.Component { ...@@ -35,6 +35,7 @@ class FacetDialog extends React.Component {
onClose={this.handleClose} onClose={this.handleClose}
aria-labelledby="form-dialog-title" aria-labelledby="form-dialog-title"
keepMounted={true} keepMounted={true}
disableRestoreFocus={true}
> >
<DialogTitle disableTypography={true}> <DialogTitle disableTypography={true}>
<Typography variant="h6">{this.props.propertyLabel}</Typography> <Typography variant="h6">{this.props.propertyLabel}</Typography>
......
...@@ -136,7 +136,7 @@ class ResultTableHead extends React.Component { ...@@ -136,7 +136,7 @@ class ResultTableHead extends React.Component {
> >
{column.label} {column.label}
{column.filter && {column.filter &&
<Tooltip title={'Filter ' + column.label}> <Tooltip title={'Filter ' + column.label.toLowerCase()}>
<IconButton <IconButton
onClick={this.handleFacetButtonOnClick} onClick={this.handleFacetButtonOnClick}
aria-label="Filter" aria-label="Filter"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment