Fix the central atmos tank monitors bluescreening (#28992)

* Make the height constant

* Update tgui.bundle.js
This commit is contained in:
Migratingcocofruit
2025-04-16 17:07:30 +00:00
committed by GitHub
parent 88578f3471
commit 77cc24e683
2 changed files with 2 additions and 5 deletions
@@ -10,10 +10,7 @@ export const AtmosTankControl = (props, context) => {
let sensors_list = data.sensors || {};
return (
<Window
width={400}
height={120 + 100 * data.inlets.length + 126 * data.vent_outlets.length + 150 * data.scrubber_outlets.length}
>
<Window width={400} height={435}>
<Window.Content scrollable>
{Object.keys(sensors_list).map((s) => (
<Section key={s} title={s}>
File diff suppressed because one or more lines are too long