s/complete/completed

This commit is contained in:
Samuel Sloniker 2024-08-11 17:54:51 -07:00
parent d5dfa9c124
commit 9187ca5585

View File

@ -190,10 +190,10 @@
if (counts["undefined"] == 0) {
if (openCount == 0) {
notice.textContent = "✅ Test complete in " + elapsed + " seconds; everything looks OK"
notice.textContent = "✅ Test completed in " + elapsed + " seconds; everything looks OK"
clearInterval(window.tableInterval)
} else {
notice.textContent = "⚠️ Test complete in " + elapsed + " seconds; " + openCount + " open port" + ((openCount == 1) ? "" : "s") + " found"
notice.textContent = "⚠️ Test completed in " + elapsed + " seconds; " + openCount + " open port" + ((openCount == 1) ? "" : "s") + " found"
clearInterval(window.tableInterval)
}
} else {