@bobfrankston/rmfmail 1.1.180 → 1.1.181
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/client/app.bundle.js +4 -0
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-list.js +4 -0
- package/client/components/message-list.js.map +1 -1
- package/client/components/message-list.ts +1 -0
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-19808 → node_modules.npmglobalize-stash-45356}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -3288,6 +3288,10 @@ function renderMessages(body, accountId, items) {
|
|
|
3288
3288
|
while (tempDiv.firstChild)
|
|
3289
3289
|
fragment.appendChild(tempDiv.firstChild);
|
|
3290
3290
|
body.replaceChildren(fragment);
|
|
3291
|
+
try {
|
|
3292
|
+
logClientEvent("renderMessages", { items: items.length, domRows: body.querySelectorAll(".ml-row").length, bodyClass: body.className, bodyChildren: body.childElementCount });
|
|
3293
|
+
} catch {
|
|
3294
|
+
}
|
|
3291
3295
|
if (focusedRow) {
|
|
3292
3296
|
const fAcct = focusedRow.accountId;
|
|
3293
3297
|
const fUid = focusedRow.msg?.uid;
|