@saooti/octopus-sdk 38.2.18 → 38.2.19
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
|
@@ -112,8 +112,7 @@ export default defineComponent({
|
|
|
112
112
|
imageUrl: `${this.podcast.imageUrl}" alt="${this.$t(
|
|
113
113
|
"Podcast image",
|
|
114
114
|
)}`,
|
|
115
|
-
title:
|
|
116
|
-
"Un super podcast de camille !Un super podcast de camille !Un super podcast de camille !!Un super podcast de camille ", //this.podcast.title,
|
|
115
|
+
title:this.podcast.title,
|
|
117
116
|
description: this.podcast.description ?? "",
|
|
118
117
|
shareText: this.$t("Listen this episode"),
|
|
119
118
|
emissionHtml: `<tr><td>
|
|
@@ -169,11 +168,11 @@ export default defineComponent({
|
|
|
169
168
|
};
|
|
170
169
|
},
|
|
171
170
|
newsletterHtml(): string {
|
|
172
|
-
return `<table style="
|
|
171
|
+
return `<table style="background:white;color:black;table-layout: fixed;width:100%;font-family: Arial,sans-serif;font-size: 14px;line-height: 20px; border:1px solid gray;">
|
|
173
172
|
<tr>
|
|
174
173
|
<td valign="top" width="30%" rowspan="7"><img width="100%" src="${
|
|
175
174
|
this.newsletterInfo.imageUrl
|
|
176
|
-
}" style="border-radius: 4px;
|
|
175
|
+
}" style="border-radius: 4px;"></td>
|
|
177
176
|
<td valign="top" width="70%"><div style="margin-top:5px;font-size: 24px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;font-weight:bold;${
|
|
178
177
|
this.newsletterInfo.colorTitle
|
|
179
178
|
}">${this.newsletterInfo.title}</div></td>
|
|
@@ -181,7 +180,7 @@ export default defineComponent({
|
|
|
181
180
|
<tr><td><div style="overflow: hidden;display: -webkit-box;-webkit-line-clamp: 6;-webkit-box-orient: vertical;word-break: break-word;">${
|
|
182
181
|
this.newsletterInfo.description
|
|
183
182
|
}</div></td></tr>
|
|
184
|
-
<tr><td valign="top"><a href="${this.shareUrl}" style="
|
|
183
|
+
<tr><td valign="top"><a href="${this.shareUrl}" style="color: ${
|
|
185
184
|
this.color
|
|
186
185
|
};">${this.$t("See more")}</a></td></tr>
|
|
187
186
|
<tr>${this.newsletterInfo.articleHtml}
|