mirror of
https://github.com/frappe/books.git
synced 2026-08-24 10:04:45 -05:00
fix: Update scroll position in nextTick
This commit is contained in:
@@ -121,7 +121,9 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
onBodyScroll({ scrollLeft }) {
|
||||
this.$refs.header.scrollLeft = scrollLeft;
|
||||
this.$nextTick(() => {
|
||||
this.$refs.header.scrollLeft = scrollLeft;
|
||||
});
|
||||
},
|
||||
async fetchReportData() {
|
||||
let data = await frappe.call({
|
||||
|
||||
Reference in New Issue
Block a user