mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-16 18:25:00 -06:00
Fix broken preference
This commit is contained in:
parent
bcd612d42f
commit
fbed65d464
@ -173,7 +173,7 @@ export default {
|
||||
ready: false,
|
||||
fields: [],
|
||||
currentPage: 1,
|
||||
perPage: 5,
|
||||
perPage: 50,
|
||||
total: 0
|
||||
}
|
||||
},
|
||||
@ -205,6 +205,7 @@ export default {
|
||||
let params = new URLSearchParams(window.location.search);
|
||||
this.currentPage = params.get('page') ? parseInt(params.get('page')) : 1;
|
||||
|
||||
|
||||
// per page:
|
||||
//this.perPage = this.get
|
||||
|
||||
@ -255,6 +256,7 @@ export default {
|
||||
|
||||
methods: {
|
||||
getAccountList: function () {
|
||||
this.perPage = this.listPageSize;
|
||||
this.accounts = [];
|
||||
// needs to be async so call itself again:
|
||||
this.downloadAccountList(1);
|
||||
|
2
frontend/webpack.mix.js
vendored
2
frontend/webpack.mix.js
vendored
@ -21,8 +21,6 @@
|
||||
const mix = require('laravel-mix');
|
||||
require('laravel-mix-bundle-analyzer');
|
||||
|
||||
|
||||
|
||||
// production
|
||||
mix.webpackConfig({
|
||||
resolve: {
|
||||
|
2
public/v2/js/accounts/index.js
vendored
2
public/v2/js/accounts/index.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user