Trigger async config parsing via the application to keep UI responsive.
(self)
| 361 | self.host_list.filter_hosts("") |
| 362 | |
| 363 | def _load_config(self): |
| 364 | """Trigger async config parsing via the application to keep UI responsive.""" |
| 365 | try: |
| 366 | if hasattr(self.app, "_parse_config_async"): |
| 367 | self.app._parse_config_async() |
| 368 | except Exception as e: |
| 369 | self._show_error(f"Failed to trigger config reload: {e}") |
| 370 | |
| 371 | def _reselect_current_host(self): |
| 372 | """Reselect and reload the previously selected host after model changes.""" |
no test coverage detected