@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
|
@@ -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:
|
|
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("
|
|
268
|
+
if (myElement.classList.contains("realLink")) {
|
|
269
269
|
myElement.click();
|
|
270
270
|
} else {
|
|
271
271
|
router.push((myElement as HTMLAnchorElement).pathname);
|