Skip to content

Commit

Permalink
Fixes #15717 - Warning popup not dissapearing
Browse files Browse the repository at this point in the history
Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
  • Loading branch information
victorphoenix3 authored and williamdes committed Jan 2, 2020
1 parent 9119a96 commit f428e4e
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 f428e4e

Please sign in to comment.