We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef47f8 commit b4fa9dbCopy full SHA for b4fa9db
js/activity.js
@@ -4129,7 +4129,8 @@ class Activity {
4129
// function to increase or decrease the "top" property of the top-right corner buttons
4130
4131
const topRightButtons = document.querySelectorAll("#buttoncontainerTOP .tooltipped");
4132
- const btnY = document.getElementById("Grid").getBoundingClientRect().top;
+ const gridElement = document.getElementById("Grid");
4133
+ const btnY = gridElement ? gridElement.getBoundingClientRect().top : 70 + LEADING + 6;
4134
4135
this.changeTopButtonsPosition = value => {
4136
topRightButtons.forEach(child => {
0 commit comments