multimodalsim-viewer 0.1.0.1__py3-none-any.whl → 0.1.0.2__py3-none-any.whl
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.
- multimodalsim_viewer/server/data_manager.py +3 -3
- multimodalsim_viewer/ui/static/index.html +1 -1
- multimodalsim_viewer/ui/static/{main-7DV4COXP.js → main-AA2XDGWI.js} +1 -1
- {multimodalsim_viewer-0.1.0.1.dist-info → multimodalsim_viewer-0.1.0.2.dist-info}/METADATA +1 -1
- {multimodalsim_viewer-0.1.0.1.dist-info → multimodalsim_viewer-0.1.0.2.dist-info}/RECORD +8 -8
- {multimodalsim_viewer-0.1.0.1.dist-info → multimodalsim_viewer-0.1.0.2.dist-info}/WHEEL +0 -0
- {multimodalsim_viewer-0.1.0.1.dist-info → multimodalsim_viewer-0.1.0.2.dist-info}/entry_points.txt +0 -0
- {multimodalsim_viewer-0.1.0.1.dist-info → multimodalsim_viewer-0.1.0.2.dist-info}/top_level.txt +0 -0
@@ -355,10 +355,10 @@ class SimulationVisualizationDataManager: # pylint: disable=too-many-public-met
|
|
355
355
|
with open(state_file_path, "r", encoding="utf-8") as file:
|
356
356
|
state = SimulationVisualizationDataManager.get_state_to_send(file)
|
357
357
|
|
358
|
-
|
359
|
-
if not
|
358
|
+
is_complete = is_simulation_complete or (index < len(sorted_states) - 1)
|
359
|
+
if not is_complete:
|
360
360
|
has_incomplete_states = True
|
361
|
-
state["isComplete"] =
|
361
|
+
state["isComplete"] = is_complete
|
362
362
|
|
363
363
|
missing_states.append(state)
|
364
364
|
|
@@ -12,5 +12,5 @@
|
|
12
12
|
<script src="scripts/load-environment.script.js" type="module"></script>
|
13
13
|
<body class="mat-typography">
|
14
14
|
<app-root></app-root>
|
15
|
-
<link rel="modulepreload" href="chunk-BQ2VC5TN.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-
|
15
|
+
<link rel="modulepreload" href="chunk-BQ2VC5TN.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-AA2XDGWI.js" type="module"></script></body>
|
16
16
|
</html>
|