Fix translation key in node detail page: nodes.tags → entities.tags

The Tags panel title was showing 'nodes.tags' as literal text instead of the translation.

Fixed: node-detail.js line 174 now uses entities.tags

Comprehensive review completed:
- Verified all 115 unique translation keys across all pages
- All keys properly resolve to valid translations in en.json
- All i18n tests passing

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Louis King
2026-02-13 23:01:49 +00:00
parent 19bb06953e
commit 9c8eb27455

View File

@@ -171,7 +171,7 @@ ${heroHtml}
<div class="card bg-base-100 shadow-xl">
<div class="card-body">
<h2 class="card-title">${t('nodes.tags')}</h2>
<h2 class="card-title">${t('entities.tags')}</h2>
${tagsTableHtml}
${adminTagsHtml}
</div>