Fixed redirect when “Component group” was deleted (#2130)

This commit is contained in:
Davide Bellini
2016-10-04 09:40:47 +02:00
committed by Graham Campbell
parent 555f852f09
commit ff84a6d935

View File

@@ -237,7 +237,7 @@ class ComponentController extends Controller
{
dispatch(new RemoveComponentGroupCommand($group));
return Redirect::route('dashboard.components.index')
return Redirect::route('dashboard.components.groups')
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.components.delete.success')));
}