Skip to content

Commit

Permalink
Merge pull request #5139 from nanasess/fix-arguments
Browse files Browse the repository at this point in the history
ファイル管理のアイコンをクリックすると JavaScript エラーになるのを修正
  • Loading branch information
Kiyotaka Oku authored Oct 13, 2021
2 parents 52651e8 + e72432b commit 5d05d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/Resource/template/admin/Content/file.twig
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ file that was distributed with this source code.
{% endif %}
{% for file in arrFileList %}
<tr id="{{ loop.index }}">
<td class="align-middle text-center" onDblClick="eccube.fileManager.setTreeStatus('tree_status');eccube.fileManager.doubleClick(arrTree, '{{ file.file_path }}', {% if file.is_dir %}true{% else %}false{% endif %} '{{ tpl_now_dir }}', false)">
<td class="align-middle text-center" onDblClick="eccube.fileManager.setTreeStatus('tree_status');eccube.fileManager.doubleClick(arrTree, '{{ file.file_path }}', {% if file.is_dir %}true{% else %}false{% endif %}, '{{ tpl_now_dir }}', false)">
{% if file.is_dir %}
<i class="fa fa-folder-o fa-2x"></i>
{% else %}
Expand Down

0 comments on commit 5d05d0b

Please sign in to comment.