提交 7e4c70ec 编写于 作者: P Phil Hughes

Fixed bug when moving list

上级 5e0b2941
......@@ -73,7 +73,7 @@
},
moveList (listFrom, orderLists) {
orderLists.forEach((id, i) => {
const list = this.findList('id', id);
const list = this.findList('id', parseInt(id));
list.position = i;
});
......
......@@ -46,7 +46,6 @@ const BoardsMockData = {
Vue.http.interceptors.push((request, next) => {
const body = BoardsMockData[request.method][request.url];
console.log(request.url);
next(request.respondWith(JSON.stringify(body), {
status: 200
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册