@social-mail/social-mail-client 1.8.292 → 1.8.294

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.
@@ -29102,10 +29102,13 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
29102
29102
  const iterator = node;
29103
29103
  let cid = iterator.getAttribute("data-content-id");
29104
29104
  if (cid) {
29105
- const a = (_b = mail.attachments) === null || _b === void 0 ? void 0 : _b.find(x => x.contentID === cid);
29106
- if (a) {
29107
- iterator.setAttribute("src", a.url);
29108
- a.included = true;
29105
+ const src = iterator.getAttribute("src");
29106
+ if (!src.includes("/social-mail/c/e/")) {
29107
+ const a = (_b = mail.attachments) === null || _b === void 0 ? void 0 : _b.find(x => x.contentID === cid);
29108
+ if (a) {
29109
+ iterator.setAttribute("src", a.url);
29110
+ a.included = true;
29111
+ }
29109
29112
  }
29110
29113
  }
29111
29114
  if (/^(IMG|VIDEO)$/.test(iterator.tagName)) {
@@ -45096,7 +45099,9 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
45096
45099
  href: AppUrlService.editWebSite(this.site),
45097
45100
  target: `_web_${this.site.folderID}`
45098
45101
  }), XNode.create(InlinePopupButton, {
45099
- popup: () => XNode.create("div", null, " ", ...this.site.hosts.map(h => XNode.create("a", {
45102
+ popup: () => XNode.create("div", {
45103
+ "data-layout": "vertical-flex-stretch-items"
45104
+ }, " ", ...this.site.hosts.map(h => XNode.create("a", {
45100
45105
  href: `https://${h.host}`,
45101
45106
  target: "_blank"
45102
45107
  }, h.host))),