mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-07-05 20:17:56 +02:00
Add files via upload
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user