fix: remove quotes around backstory display

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-10 01:51:25 +00:00
parent 377b24d225
commit 0127eeaae6
+1 -1
View File
@@ -470,7 +470,7 @@ export class NpcInfoPanel {
// Update backstory
const backstory = entity.backstory;
if (backstory && backstory.length > 0) {
this.backstoryEl.textContent = `"${backstory}"`;
this.backstoryEl.textContent = backstory;
this.backstoryEl.style.opacity = '1';
this.backstoryEl.style.minHeight = '40px';
} else {