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:
parent
5b706d45e0
commit
faff102e09
1 changed files with 1 additions and 2 deletions
|
|
@ -567,8 +567,7 @@ function displayResults(data) {
|
|||
html += `<td class="${col.cls || ''}">${val != null && val !== '' && val !== -1 ? val : '-'}</td>`;
|
||||
}
|
||||
});
|
||||
html += '</tr>
|
||||
`;
|
||||
html += '</tr>';
|
||||
});
|
||||
|
||||
html += `
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue