Update agents, dashboard, kb +2 more (+6 ~11)
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="icon" type="image/svg+xml" href="favicon.svg">
|
||||
<title>Echo · KB</title>
|
||||
<link rel="stylesheet" href="common.css">
|
||||
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
||||
@@ -1203,7 +1204,7 @@
|
||||
try {
|
||||
let content = notesCache[file];
|
||||
if (!content) {
|
||||
const response = await fetch(file);
|
||||
const response = await fetch(file + '?t=' + Date.now());
|
||||
content = await response.text();
|
||||
notesCache[file] = content;
|
||||
}
|
||||
@@ -1222,7 +1223,7 @@
|
||||
async function preloadNotes() {
|
||||
for (const note of notesIndex) {
|
||||
try {
|
||||
const response = await fetch(note.file);
|
||||
const response = await fetch(note.file + '?t=' + Date.now());
|
||||
notesCache[note.file] = await response.text();
|
||||
} catch (e) {
|
||||
notesCache[note.file] = '';
|
||||
|
||||
Reference in New Issue
Block a user