Skip to content

Commit

Permalink
Merge branch 'MDL-77604-master' of https://github.com/meirzamoodle/mo…
Browse files Browse the repository at this point in the history
  • Loading branch information
junpataleta authored and sarjona committed Mar 17, 2023
2 parents 1546c4f + a314425 commit ac0f2dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion blocks/recentlyaccesseditems/amd/build/main.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion blocks/recentlyaccesseditems/amd/build/main.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions blocks/recentlyaccesseditems/amd/src/main.js
Expand Up @@ -57,9 +57,9 @@ define(
showmoreLink.classList.add('d-none');

const hiddenItems = document.querySelector('[data-region="items-list"]').children;
hiddenItems.forEach(function(hiddenItem) {
for (const hiddenItem of hiddenItems) {
hiddenItem.style = "display: block";
});
}
});
};

Expand Down

0 comments on commit ac0f2dd

Please sign in to comment.