Pipeline corrections

This commit is contained in:
2025-07-01 14:42:54 +02:00
parent 404143f8a6
commit 606435a6b3
6 changed files with 8 additions and 10 deletions

View File

@@ -120,7 +120,7 @@ export default {
return pos;
},
handleScroll(event) {
handleScroll() {
let pos = this.findPos(this.stickyNav);
let top = this.heightSum + this.top - window.scrollY;
//console.log(window.scrollY);

View File

@@ -79,8 +79,9 @@
{{ $t("select_time_spent") }}
</option>
<option
v-for="time in timeSpentChoices"
v-for="(time, i) in timeSpentChoices"
:value="time.value"
:key="i"
>
{{ time.text }}
</option>

View File

@@ -39,7 +39,7 @@ export default {
};
return makeFetch("PATCH", url, body)
.then((response) => {
.then(() => {
this.$emit("referrerSet", ref);
})
.catch((error) => {