Template overview broken when templates exists

Due to a typo in the routing table the page breaks once there are
templates available. Once the typo is resolved everything works as
expected
This commit is contained in:
Jeroen Coupé
2016-10-17 23:28:15 +02:00
parent a8aec0603e
commit f15bf48747
+1 -1
View File
@@ -58,7 +58,7 @@ class TemplateRoutes
'uses' => 'IncidentController@editTemplateAction',
]);
$router->delete('{incident_template}', [
'as' => 'delete::dashboard.templates.delete',
'as' => 'delete:dashboard.templates.delete',
'uses' => 'IncidentController@deleteTemplateAction',
]);
});