mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix broken preference
This commit is contained in:
parent
bcd612d42f
commit
fbed65d464
@ -173,7 +173,7 @@ export default {
|
|||||||
ready: false,
|
ready: false,
|
||||||
fields: [],
|
fields: [],
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
perPage: 5,
|
perPage: 50,
|
||||||
total: 0
|
total: 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -205,6 +205,7 @@ export default {
|
|||||||
let params = new URLSearchParams(window.location.search);
|
let params = new URLSearchParams(window.location.search);
|
||||||
this.currentPage = params.get('page') ? parseInt(params.get('page')) : 1;
|
this.currentPage = params.get('page') ? parseInt(params.get('page')) : 1;
|
||||||
|
|
||||||
|
|
||||||
// per page:
|
// per page:
|
||||||
//this.perPage = this.get
|
//this.perPage = this.get
|
||||||
|
|
||||||
@ -255,6 +256,7 @@ export default {
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
getAccountList: function () {
|
getAccountList: function () {
|
||||||
|
this.perPage = this.listPageSize;
|
||||||
this.accounts = [];
|
this.accounts = [];
|
||||||
// needs to be async so call itself again:
|
// needs to be async so call itself again:
|
||||||
this.downloadAccountList(1);
|
this.downloadAccountList(1);
|
||||||
|
2
frontend/webpack.mix.js
vendored
2
frontend/webpack.mix.js
vendored
@ -21,8 +21,6 @@
|
|||||||
const mix = require('laravel-mix');
|
const mix = require('laravel-mix');
|
||||||
require('laravel-mix-bundle-analyzer');
|
require('laravel-mix-bundle-analyzer');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// production
|
// production
|
||||||
mix.webpackConfig({
|
mix.webpackConfig({
|
||||||
resolve: {
|
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