Skip to content

Commit

Permalink
BugFix: blog_template edit form was not work correctly. (always creat…
Browse files Browse the repository at this point in the history
…e new one)
  • Loading branch information
uzulla committed Sep 20, 2020
1 parent 2217bf0 commit dcf082a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/twig_templates/admin/blog_templates/edit.twig
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
// submit処理を行う
$('#sys-blog-template-form-submit').click(function () {
var action = '{{ url(req, 'BlogTemplates', 'create') }}';
var action = '{{ url(req, 'BlogTemplates', 'edit') }}';
$('#sys-blog-template-form').prop('action', action);
$('#sys-blog-template-form').prop('target', '_self');
});
Expand Down

0 comments on commit dcf082a

Please sign in to comment.