Just wanted to preface this by saying, I'm not really that knowledgeable with JavaScript, I'm more of a SQL guy and write Python code on the side. So feel free to correct any errors or add anything I may have missed.
So far, the changes I made have been working for me. I'm almost done with the Exploration Era with this mod on.
To make these changes yourself, go to the cheat panel mod directory and then go to the ui folder. You'll need to change a few lines in two files on there.
In
cheat-panel/cheat-panel.js, change lines 6 to 10 to the following:
JavaScript:
import { P as Panel } from '/core/ui/panel-support.chunk.js';
import { MustGetElement } from '/core/ui/utilities/utilities-dom.chunk.js';
import FocusManager from '/core/ui/input/focus-manager.js';
import { b as InputEngineEventName } from '/core/ui/input/input-support.chunk.js';
import {N as NavTray } from '/core/ui/navigation-tray/model-navigation-tray.chunk.js';
In
sub-system-dock/panel-sub-system-dock.js, change lines 7 to 11 to the following:
JavaScript:
import ContextManager from '/core/ui/context-manager/context-manager.js';
import FocusManager from '/core/ui/input/focus-manager.js';
import { P as Panel } from '/core/ui/panel-support.chunk.js';
import DialogBoxManager from '/core/ui/dialog-box/manager-dialog-box.chunk.js';
import { Icon } from '/core/ui/utilities/utilities-image.chunk.js';
and then change line 342 to:
Code:
DialogBoxManager.createDialog_Confirm({
And that should be it, hopefully it works for you guys as well