pinokiod 7.5.43 → 7.5.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -492,6 +492,9 @@
|
|
|
492
492
|
this.setStatus(error && error.message ? error.message : 'Privacy filtering failed.', true)
|
|
493
493
|
} finally {
|
|
494
494
|
this.setBusy(false)
|
|
495
|
+
if (this.files.length && this.filesEl && this.filesEl.children.length) {
|
|
496
|
+
this.renderFileList()
|
|
497
|
+
}
|
|
495
498
|
this.updateCount()
|
|
496
499
|
}
|
|
497
500
|
}
|
package/test/logs-ask-ai.test.js
CHANGED
|
@@ -489,6 +489,10 @@ test("raw logs redaction sends reviewed top-level overrides when generating zip"
|
|
|
489
489
|
document.getElementById("logs-top-redaction-count").textContent.includes("masked")
|
|
490
490
|
}, "top-level redaction review")
|
|
491
491
|
|
|
492
|
+
await waitFor(() => document.getElementById("logs-top-redaction-status").textContent.includes("Report redacted"), "top-level redaction complete")
|
|
493
|
+
const fileModes = Array.from(document.querySelectorAll(".logs-top-redaction-mode"))
|
|
494
|
+
assert.equal(fileModes.length > 0, true)
|
|
495
|
+
assert.equal(fileModes.every((select) => select.disabled === false), true)
|
|
492
496
|
assert.match(document.getElementById("logs-top-redaction-list").textContent, /private_key/)
|
|
493
497
|
|
|
494
498
|
document.getElementById("logs-redaction-collapse").click()
|