diff --git a/resources/views/v1/export/index.twig b/resources/views/v1/export/index.twig index 1671d28b1fd..5709a8e9e81 100644 --- a/resources/views/v1/export/index.twig +++ b/resources/views/v1/export/index.twig @@ -15,9 +15,10 @@

{{ 'export_data_expl'|_ }}

- +
+ + +

{{ 'export_data_advanced_expl'|_ }}

diff --git a/routes/web.php b/routes/web.php index c0fe5739931..1d9f84de740 100644 --- a/routes/web.php +++ b/routes/web.php @@ -538,7 +538,7 @@ static function () { // index Route::get('', ['uses' => 'Export\IndexController@index', 'as' => 'index']); - Route::get('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']); + Route::post('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']); } ); /**