hedgequantx 2.7.57 → 2.7.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/app.js +2 -3
- package/src/menus/dashboard.js +6 -0
package/package.json
CHANGED
package/src/app.js
CHANGED
|
@@ -175,9 +175,8 @@ const run = async () => {
|
|
|
175
175
|
await refreshStats();
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
//
|
|
179
|
-
|
|
180
|
-
spinner.stop();
|
|
178
|
+
// Store spinner globally so dashboardMenu can stop it before clear
|
|
179
|
+
global.__hqxSpinner = spinner;
|
|
181
180
|
|
|
182
181
|
// Main loop
|
|
183
182
|
while (true) {
|
package/src/menus/dashboard.js
CHANGED
|
@@ -17,6 +17,12 @@ const { prompts } = require('../utils');
|
|
|
17
17
|
const dashboardMenu = async (service) => {
|
|
18
18
|
prepareStdin();
|
|
19
19
|
|
|
20
|
+
// Stop any global spinner before clearing
|
|
21
|
+
if (global.__hqxSpinner) {
|
|
22
|
+
global.__hqxSpinner.stop();
|
|
23
|
+
global.__hqxSpinner = null;
|
|
24
|
+
}
|
|
25
|
+
|
|
20
26
|
// Clear screen and show banner (always closed)
|
|
21
27
|
console.clear();
|
|
22
28
|
displayBanner();
|