1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-25 15:22:42 +00:00

Fixed: Log event modal doesn't close

Fixes #239
This commit is contained in:
Qstick 2018-03-19 21:03:02 -04:00
parent ef0590728f
commit 9d056006cc

View file

@ -42,7 +42,10 @@ class LogsTableRow extends Component {
// Listeners
onPress = () => {
this.setState({ isDetailsModalOpen: true });
// Don't re-open the modal if it's already open
if (!this.state.isDetailsModalOpen) {
this.setState({ isDetailsModalOpen: true });
}
}
onModalClose = () => {
@ -63,7 +66,9 @@ class LogsTableRow extends Component {
} = this.props;
return (
<TableRowButton onPress={this.onPress}>
<TableRowButton
onPress={this.onPress}
>
{
columns.map((column) => {
const {