hedgequantx 2.9.108 → 2.9.109
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/pages/algo/ui.js +2 -4
package/package.json
CHANGED
package/src/pages/algo/ui.js
CHANGED
|
@@ -289,10 +289,8 @@ class AlgoUI {
|
|
|
289
289
|
const { W, logs, maxLogs } = this;
|
|
290
290
|
|
|
291
291
|
// Activity header - HF style with animated spinner
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
const elapsed = Date.now() - this.startTime;
|
|
295
|
-
this.spinnerFrame = Math.floor(elapsed / 100) % SPINNER.length;
|
|
292
|
+
// Increment spinner frame each render (250ms interval = visible rotation)
|
|
293
|
+
this.spinnerFrame = (this.spinnerFrame + 1) % SPINNER.length;
|
|
296
294
|
const spinner = SPINNER[this.spinnerFrame];
|
|
297
295
|
const now = new Date();
|
|
298
296
|
const timeStr = now.toLocaleTimeString('en-US', { hour12: false });
|