Add missing position property to list and bucket models
This commit is contained in:
parent
617a6a0c21
commit
a1e1fe4eb0
2 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ export default class BucketModel extends AbstractModel {
|
||||||
limit: 0,
|
limit: 0,
|
||||||
tasks: [],
|
tasks: [],
|
||||||
isDoneBucket: false,
|
isDoneBucket: false,
|
||||||
|
position: 0,
|
||||||
|
|
||||||
createdBy: null,
|
createdBy: null,
|
||||||
created: null,
|
created: null,
|
||||||
|
|
|
@ -43,6 +43,7 @@ export default class ListModel extends AbstractModel {
|
||||||
backgroundInformation: null,
|
backgroundInformation: null,
|
||||||
isFavorite: false,
|
isFavorite: false,
|
||||||
subscription: null,
|
subscription: null,
|
||||||
|
position: 0,
|
||||||
|
|
||||||
created: null,
|
created: null,
|
||||||
updated: null,
|
updated: null,
|
||||||
|
|
Loading…
Reference in a new issue