We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a1469 commit 83fad5eCopy full SHA for 83fad5e
1 file changed
src/lib/components/chat/FileNav.svelte
@@ -172,6 +172,9 @@
172
173
if (terminal && terminal.url !== prevTerminalUrl) {
174
prevTerminalUrl = terminal.url;
175
+ loading = true;
176
+ error = null;
177
+ entries = [];
178
(async () => {
179
// Discover server features (terminal enabled/disabled)
180
const config = await getTerminalConfig(terminal.url, terminal.key);
@@ -531,6 +534,7 @@
531
534
});
532
535
533
536
if (!handledDisplayFile) {
537
538
if (savedPath === '/') {
539
const rawCwd = await getCwd(terminal.url, terminal.key);
540
const cwd = rawCwd ? normalizePath(rawCwd) : null;
0 commit comments