Fix create sub results showing even if other result creation is running.

This commit is contained in:
Stephan Porada
2020-09-10 08:53:36 +02:00
parent 1e316d6852
commit fd1d1c2fc3
2 changed files with 3 additions and 3 deletions

View File

@ -283,7 +283,7 @@ document.addEventListener("DOMContentLoaded", () => {
resultsList.inspect([dataIndex], 'inspect');
} else if (event.target.classList.contains('add-btn')) {
dataIndex = parseInt(event.target.closest('tr').dataset.index);
resultsList.addToSubResults(dataIndex);
resultsList.addToSubResults(dataIndex, client);
}
})