mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 16:49:16 +02:00
Fixed some debouncing issues
This commit is contained in:
parent
e1817cc5c2
commit
0c5f151fc1
3 changed files with 5 additions and 4 deletions
|
@ -103,7 +103,7 @@ export default {
|
|||
$('.ui.dropdown').dropdown()
|
||||
},
|
||||
methods: {
|
||||
updateQueryString: function () {
|
||||
updateQueryString: _.debounce(function () {
|
||||
this.$router.replace({
|
||||
query: {
|
||||
query: this.query,
|
||||
|
@ -112,7 +112,7 @@ export default {
|
|||
ordering: this.getOrderingAsString()
|
||||
}
|
||||
})
|
||||
},
|
||||
}, 500),
|
||||
fetchData: _.debounce(function () {
|
||||
var self = this
|
||||
this.isLoading = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue