Add files via upload

This commit is contained in:
公明
2026-07-01 16:06:15 +08:00
committed by GitHub
parent 5b7f157802
commit 2f58d0a457
3 changed files with 32 additions and 9 deletions
+5 -2
View File
@@ -722,9 +722,12 @@ function updateProjectStatusPill(status) {
function renderProjectDetailMeta(updatedAt) {
const metaEl = document.getElementById('projects-detail-meta');
if (!metaEl) return;
const timeEl = document.getElementById('projects-detail-meta-time');
if (!metaEl || !timeEl) return;
const time = formatProjectTime(updatedAt);
metaEl.textContent = tpFmt('projects.updatedPrefix', `Updated ${time}`, { time });
const full = tpFmt('projects.updatedPrefix', `Updated ${time}`, { time });
timeEl.textContent = time;
metaEl.title = full;
}
function refreshProjectDetailMetaI18n() {