Skip to content

Commit

Permalink
Fix typo in loader template
Browse files Browse the repository at this point in the history
  • Loading branch information
guvra committed Sep 4, 2023
1 parent 8be83a3 commit 18f7507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/base/templates/loader.phtml
Expand Up @@ -19,7 +19,7 @@ $viewModel = $block->getData('viewModel');
return response.text();
}).then((html) => {
const fragment = document.createRange().createContextualFragment(html);
document.body.append( fragment);
document.body.append(fragment);
}).catch((error) => {
console.log(`Failed to load the debug toolbar: ${error}`);
});
Expand Down

0 comments on commit 18f7507

Please sign in to comment.