Skip to content

Commit

Permalink
fix(ui): cannot scroll down to channel values in controller info panel
Browse files Browse the repository at this point in the history
Fixes #3685
  • Loading branch information
robertsLando committed Apr 29, 2024
1 parent 9f72cf3 commit 8d75372
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/components/custom/BgRssiChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export default {
// in-legend display
label: '',
value: (self, rawValue) =>
rawValue ? rawValue.toFixed(2) + ' dBm' : '----- dBm',
rawValue ? rawValue.toFixed(2) + ' dBm' : '---',
// series style
stroke: 'red',
width: 1,
Expand Down Expand Up @@ -314,11 +314,13 @@ export default {
this.ro.observe(container)
}
const width = this.$parent.$el.offsetWidth
const opts = {
title: 'Background RSSI',
// class: "my-chart",
width: 400,
height: 400,
width,
height: 500,
plugins: [touchZoomPlugin()],
axes: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/views/Mesh.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
background: #ccccccaa;
border: 2px solid black;
border-radius: 20px;
max-width: 400px;
max-width: 500px;
z-index: 1;
max-height: 80vh;
overflow-y: scroll;
Expand Down

0 comments on commit 8d75372

Please sign in to comment.