diff --git a/src/static/js/pipeline.js b/src/static/js/pipeline.js index d38fdd6..f870d8e 100644 --- a/src/static/js/pipeline.js +++ b/src/static/js/pipeline.js @@ -191,6 +191,7 @@ const Pipeline = { } }); this._render(); + this._renderMini(); }, /** Restauriert den letzten Snapshot. Rueckgabe: true bei Erfolg, false wenn keiner da war. */ @@ -199,6 +200,7 @@ const Pipeline = { this._stateByKey = this._snapshotState; this._snapshotState = null; this._render(); + this._renderMini(); return true; },