fix: broken template literal in displayResults caused JS syntax error

Unclosed string on line 570 prevented entire inventory.js from loading,
breaking character list and all search functionality.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erik 2026-04-09 10:06:09 +02:00
parent 5b706d45e0
commit faff102e09

View file

@ -567,8 +567,7 @@ function displayResults(data) {
html += `<td class="${col.cls || ''}">${val != null && val !== '' && val !== -1 ? val : '-'}</td>`;
}
});
html += '</tr>
`;
html += '</tr>';
});
html += `