mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-21 16:01:05 +00:00
fix(coding-agent): use specific terminology in reload messages instead of 'resources'
This commit is contained in:
parent
7d2255ddc2
commit
5e079e2ea8
1 changed files with 4 additions and 2 deletions
|
|
@ -3270,7 +3270,9 @@ export class InteractiveMode {
|
||||||
|
|
||||||
this.resetExtensionUI();
|
this.resetExtensionUI();
|
||||||
|
|
||||||
const loader = new BorderedLoader(this.ui, theme, "Reloading resources...", { cancellable: false });
|
const loader = new BorderedLoader(this.ui, theme, "Reloading extensions, skills, prompts, themes...", {
|
||||||
|
cancellable: false,
|
||||||
|
});
|
||||||
const previousEditor = this.editor;
|
const previousEditor = this.editor;
|
||||||
this.editorContainer.clear();
|
this.editorContainer.clear();
|
||||||
this.editorContainer.addChild(loader);
|
this.editorContainer.addChild(loader);
|
||||||
|
|
@ -3298,7 +3300,7 @@ export class InteractiveMode {
|
||||||
if (modelsJsonError) {
|
if (modelsJsonError) {
|
||||||
this.showError(`models.json error: ${modelsJsonError}`);
|
this.showError(`models.json error: ${modelsJsonError}`);
|
||||||
}
|
}
|
||||||
this.showStatus("Reloaded resources");
|
this.showStatus("Reloaded extensions, skills, prompts, themes");
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
restoreEditor();
|
restoreEditor();
|
||||||
this.showError(`Reload failed: ${error instanceof Error ? error.message : String(error)}`);
|
this.showError(`Reload failed: ${error instanceof Error ? error.message : String(error)}`);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue