diff --git a/index.html b/index.html index 33ccd07e..8cb41177 100644 --- a/index.html +++ b/index.html @@ -778,7 +778,7 @@ const axes = ['Roll', 'Pitch', 'Yaw']; const pidTbody = document.getElementById('pid_tbody'); - axes.forEach(axis => { + for (const axis of axes) { const row = ` ${axis} @@ -788,7 +788,7 @@ `; pidTbody.innerHTML += row; - }); + } @@ -1516,7 +1516,11 @@ - +
+ + + +