Skip to content

Commit

Permalink
Merg #15718 - Fixes #15717 - Warning popup not dissapearing
Browse files Browse the repository at this point in the history
Pull-request: #15718
Fixes: #15717 
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Jan 2, 2020
2 parents 9119a96 + f428e4e commit 8571ede
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/classes/Controllers/Table/StructureController.php
Expand Up @@ -291,7 +291,8 @@ public function indexAction(ContainerBuilder $containerBuilder): void
}
} else {
$this->response->setRequestStatus(false);
$this->response->addJSON('message', __('No column selected.'));
$message = Message::error(__('No column selected.'));
$this->response->addJSON('message', $message);
}
}

Expand Down

0 comments on commit 8571ede

Please sign in to comment.