@bobfrankston/mailx 1.0.129 → 1.0.130

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.
Files changed (2) hide show
  1. package/client/app.js +2 -4
  2. package/package.json +1 -1
package/client/app.js CHANGED
@@ -123,11 +123,9 @@ function clearViewer() {
123
123
  if (body)
124
124
  body.innerHTML = "";
125
125
  if (header)
126
- header.innerHTML = "";
127
- if (att) {
128
- att.innerHTML = "";
126
+ header.hidden = true;
127
+ if (att)
129
128
  att.hidden = true;
130
- }
131
129
  }
132
130
  initFolderTree(folderTree, (accountId, folderId, folderName, specialUse) => {
133
131
  currentFolderSpecialUse = specialUse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx",
3
- "version": "1.0.129",
3
+ "version": "1.0.130",
4
4
  "description": "Local-first email client with IMAP sync and standalone native app",
5
5
  "type": "module",
6
6
  "main": "bin/mailx.js",