Skip to content

Commit e1d6288

Browse files
authoredOct 5, 2020
Merge pull request #150 from uzulla/fix/template-edit-is-not-worked-correctly
バグ修正 テンプレート編集が新規追加になっていた
2 parents 4535139 + dcf082a commit e1d6288

File tree

1 file changed

+1
-1
lines changed
  • app/twig_templates/admin/blog_templates

1 file changed

+1
-1
lines changed
 

‎app/twig_templates/admin/blog_templates/edit.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
4949
// submit処理を行う
5050
$('#sys-blog-template-form-submit').click(function () {
51-
var action = '{{ url(req, 'BlogTemplates', 'create') }}';
51+
var action = '{{ url(req, 'BlogTemplates', 'edit') }}';
5252
$('#sys-blog-template-form').prop('action', action);
5353
$('#sys-blog-template-form').prop('target', '_self');
5454
});

0 commit comments

Comments
 (0)
Please sign in to comment.