@saooti/octopus-sdk 41.0.0-SNAPSHOT → 41.0.1-SNAPSHOT

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.0.0-SNAPSHOT",
3
+ "version": "41.0.1-SNAPSHOT",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -264,7 +264,7 @@ const iFrameHeight = computed(() => {
264
264
  case "videoLive":
265
265
  return "450px";
266
266
  default:
267
- return "530px";
267
+ return "540px";
268
268
  }
269
269
  });
270
270
  const iFrame = computed(() => {
@@ -85,9 +85,9 @@ const optionsSelect = computed(() => {
85
85
  { name: t("Default version"), value: "default", condition: true },
86
86
  { name: t("Large version"), value: "largeMore", condition: props.podcast?.podcastId, },
87
87
  {
88
- name: t("Minimalist length version"),
88
+ name: props.podcast?.podcastId ? t("Minimalist length version"): t("Large version"),
89
89
  value: "large",
90
- condition: props.podcast?.podcastId,
90
+ condition: true,
91
91
  },
92
92
  {
93
93
  name: t("Emission version"),
@@ -265,7 +265,7 @@ function clearDataBlur(e: FocusEvent) {
265
265
  if (!(myElement as HTMLAnchorElement).href) {
266
266
  return clearClick();
267
267
  }
268
- if (myElement.classList.contains("reallink")) {
268
+ if (myElement.classList.contains("realLink")) {
269
269
  myElement.click();
270
270
  } else {
271
271
  router.push((myElement as HTMLAnchorElement).pathname);