This commit is contained in:
2026-01-21 15:49:47 -08:00
parent da2bff8cd4
commit 06af9b30ac
2 changed files with 24 additions and 2 deletions

View File

@@ -1018,6 +1018,28 @@ class Add_Tag(Cmdlet):
)
if is_last_stage and display_items:
try:
live_progress = ctx.get_live_progress()
except Exception:
live_progress = None
if live_progress is not None:
try:
pipe_idx = getattr(stage_ctx, "pipe_index", None)
if isinstance(pipe_idx, int):
live_progress.finish_pipe(int(pipe_idx), force_complete=True)
except Exception:
pass
try:
live_progress.stop()
except Exception:
pass
try:
if hasattr(ctx, "set_live_progress"):
ctx.set_live_progress(None)
except Exception:
pass
try:
from SYS.rich_display import render_item_details_panel
from SYS.result_table import Table