fix(dashboard): update gitea repo references from clawd to echo-core
Referințele vechi ~/clawd și gitea.romfast.ro/romfast/clawd rămase din migrarea OpenClaw au fost corectate în index.html și files.html. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -833,7 +833,7 @@
|
||||
<main class="main">
|
||||
<div class="toolbar">
|
||||
<div class="breadcrumb" id="breadcrumb">
|
||||
<span class="breadcrumb-item current" onclick="loadPath('')">~/clawd</span>
|
||||
<span class="breadcrumb-item current" onclick="loadPath('')">~/echo-core</span>
|
||||
</div>
|
||||
<div class="toolbar-actions">
|
||||
<!-- Git Filter Toggle -->
|
||||
@@ -1277,7 +1277,7 @@
|
||||
const breadcrumb = document.getElementById('breadcrumb');
|
||||
const parts = currentPath.split('/').filter(p => p);
|
||||
|
||||
let html = `<span class="breadcrumb-item ${parts.length === 0 ? 'current' : ''}" onclick="loadPath('')">~/clawd</span>`;
|
||||
let html = `<span class="breadcrumb-item ${parts.length === 0 ? 'current' : ''}" onclick="loadPath('')">~/echo-core</span>`;
|
||||
let buildPath = '';
|
||||
|
||||
for (let i = 0; i < parts.length; i++) {
|
||||
@@ -1866,7 +1866,7 @@
|
||||
|
||||
if (changedPaths.length === 0) {
|
||||
document.getElementById('breadcrumb').innerHTML = `
|
||||
<span class="breadcrumb-item" onclick="toggleGitFilter()">~/clawd</span>
|
||||
<span class="breadcrumb-item" onclick="toggleGitFilter()">~/echo-core</span>
|
||||
<span class="breadcrumb-sep"><i data-lucide="chevron-right"></i></span>
|
||||
<span class="breadcrumb-item current" style="color:var(--success)">✓ Git curat</span>
|
||||
`;
|
||||
@@ -1877,7 +1877,7 @@
|
||||
|
||||
// Update breadcrumb
|
||||
document.getElementById('breadcrumb').innerHTML = `
|
||||
<span class="breadcrumb-item" onclick="toggleGitFilter()">~/clawd</span>
|
||||
<span class="breadcrumb-item" onclick="toggleGitFilter()">~/echo-core</span>
|
||||
<span class="breadcrumb-sep"><i data-lucide="chevron-right"></i></span>
|
||||
<span class="breadcrumb-item current" style="color:var(--warning)">🔸 Git Changes (${changedPaths.length})</span>
|
||||
`;
|
||||
|
||||
@@ -2100,7 +2100,7 @@
|
||||
|
||||
subtitle.textContent = `${git.branch} · ${git.lastCommit.time}`;
|
||||
|
||||
const GITEA_URL = 'https://gitea.romfast.ro/romfast/clawd';
|
||||
const GITEA_URL = 'https://gitea.romfast.ro/romfast/echo-core';
|
||||
let html = `
|
||||
<div class="git-detail-item">
|
||||
<i data-lucide="git-commit"></i>
|
||||
@@ -2120,7 +2120,7 @@
|
||||
}
|
||||
html += `<div class="git-detail-item">
|
||||
<i data-lucide="external-link"></i>
|
||||
<a href="${GITEA_URL}" target="_blank" style="color:var(--accent)">gitea.romfast.ro/romfast/clawd</a>
|
||||
<a href="${GITEA_URL}" target="_blank" style="color:var(--accent)">gitea.romfast.ro/romfast/echo-core</a>
|
||||
</div>`;
|
||||
|
||||
details.innerHTML = html;
|
||||
|
||||
Reference in New Issue
Block a user