Skip to content

Commit

Permalink
fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
beru committed Sep 19, 2024
1 parent daee0ef commit cf7ed23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@ view.Sidebar = class {
sidebar.addEventListener('transitionend', (event) => {
if (event.propertyName === 'opacity' && sidebar.style.opacity === '0') {
const content = this._element('sidebar-content');
content.innerHTML.replaceChildren();
content.replaceChildren();
}
});
}
Expand Down

0 comments on commit cf7ed23

Please sign in to comment.