mirror of
https://github.com/romancm/gamebrary
synced 2024-11-28 14:10:26 +00:00
Start empty list with a dummy list
This commit is contained in:
parent
c1b6bfe552
commit
0a1dca91ba
1 changed files with 5 additions and 1 deletions
|
@ -166,7 +166,11 @@ export default {
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
})
|
})
|
||||||
: [];
|
: [{
|
||||||
|
name: 'List name here',
|
||||||
|
games: [],
|
||||||
|
settings: {},
|
||||||
|
}];
|
||||||
|
|
||||||
const payload = {
|
const payload = {
|
||||||
...board,
|
...board,
|
||||||
|
|
Loading…
Reference in a new issue