This commit is contained in:
2026-01-09 01:22:06 -08:00
parent 89ac3bb7e8
commit 1deddfda5c
10 changed files with 1004 additions and 179 deletions

9
TUI.py
View File

@@ -498,6 +498,15 @@ class PipelineHubApp(App):
if self.worker_table:
self.worker_table.add_columns("ID", "Type", "Status", "Details")
# Initialize the store choices cache at startup (filters disabled stores)
try:
from cmdlet._shared import SharedArgs
from SYS.config import load_config
config = load_config()
SharedArgs._refresh_store_choices_cache(config)
except Exception:
pass
self._populate_store_options()
self._load_cmdlet_names()
if self.executor.worker_manager: