Bug fix for the archive_id not getting reset when viewing the list of archives.

This commit is contained in:
Scott Idem
2024-12-02 09:41:43 -05:00
parent 12b761e127
commit c0fe69ea73
2 changed files with 30 additions and 20 deletions

View File

@@ -136,9 +136,10 @@ $: if ($idaa_trig.archive_content_li) {
if (browser) {
console.log('Browser environment detected.');
let message = {'archive_id': $idaa_slct?.archive_id};
let message = {'archive_id': $idaa_slct?.archive_id ?? null};
window.parent.postMessage(message, "*");
}
</script>