@saooti/octopus-sdk 38.1.9 → 38.1.11
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
|
@@ -159,7 +159,7 @@ export default defineComponent({
|
|
|
159
159
|
}
|
|
160
160
|
},
|
|
161
161
|
goToAdministration(){
|
|
162
|
-
if("
|
|
162
|
+
if("backoffice" !== this.$route.name){
|
|
163
163
|
this.$router.push("/main/priv/backoffice");
|
|
164
164
|
}else if (window.history.length > 1) {
|
|
165
165
|
this.$router.go(-1);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div v-if="display" id="test-menu-dropdown" class="octopus-progress">
|
|
2
|
+
<div v-if="!inPlayer || display" id="test-menu-dropdown" class="octopus-progress">
|
|
3
3
|
<div
|
|
4
4
|
v-if="secondaryProgress"
|
|
5
5
|
class="octopus-progress-bar bg-light"
|
|
@@ -97,6 +97,7 @@ export default defineComponent({
|
|
|
97
97
|
mainProgress: { default: 0, type: Number },
|
|
98
98
|
secondaryProgress: { default: 0, type: Number },
|
|
99
99
|
isProgressCursor: { default: false, type: Boolean },
|
|
100
|
+
inPlayer: { default: false, type: Boolean },
|
|
100
101
|
},
|
|
101
102
|
data() {
|
|
102
103
|
return {
|