Skip to content

Commit 1d72392

Browse files
committed
Merge branch 'release.24.10' into release.24.12
# Conflicts: # CHANGELOG.md
2 parents b1d8e4a + 01414eb commit 1d72392

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: CI
66
on:
77
# Triggers the workflow on push or pull request events but only for the master branch
88
pull_request:
9-
branches: [ master, next, release.* ]
9+
branches: [ master, next, release.*, flex ]
1010

1111
# Allows you to run this workflow manually from the Actions tab
1212
workflow_dispatch:

frontend/express/public/javascripts/countly/vue/components/form.js

+8
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,12 @@
172172
},
173173
prevStep: function() {
174174
this.setStep(this.currentStepIndex - 1, 'prev');
175+
this.scrollToTop();
175176
},
176177
nextStep: function() {
177178
this.beforeLeavingStep("onlyCurrent");
178179
this.setStep(this.currentStepIndex + 1, 'next', !this.isCurrentStepValid);
180+
this.scrollToTop();
179181
},
180182
reset: function() {
181183
var self = this;
@@ -233,6 +235,12 @@
233235
}
234236
});
235237
}
238+
},
239+
scrollToTop: function() {
240+
var container = this.$el.getElementsByClassName("cly-vue-drawer__steps-container")[0];
241+
if (container && container.scrollTop) {
242+
container.scrollTop = 0;
243+
}
236244
}
237245
}
238246
};

package-lock.json

+8-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"express-session": "1.18.1",
5555
"form-data": "^4.0.0",
5656
"formidable": "2.1.1",
57-
"fs-extra": "11.2.0",
57+
"fs-extra": "11.3.0",
5858
"geoip-lite": "1.4.10",
5959
"get-random-values": "^3.0.0",
6060
"grunt": "1.6.1",
@@ -78,7 +78,7 @@
7878
"moment-timezone": "0.5.46",
7979
"mongodb": "6.11.0",
8080
"nginx-conf": "2.1.0",
81-
"nodemailer": "6.9.16",
81+
"nodemailer": "6.10.0",
8282
"object-hash": "3.0.0",
8383
"offline-geocoder": "git+https://github.com/Countly/offline-geocoder.git",
8484
"properties-parser": "0.6.0",

0 commit comments

Comments
 (0)