diff --git a/.env.development b/.env.development index e032ebc..3cb9400 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ -APP_VERSION="DEV 0.0.27" +APP_VERSION="DEV 0.0.30" SERVICE_WORKER_FILE='service-worker.js' APP_ID='1' APP_URL='https://freeplanet.app' diff --git a/src/components/todos/todo/todo.vue b/src/components/todos/todo/todo.vue index 8fa0c4f..843f20b 100644 --- a/src/components/todos/todo/todo.vue +++ b/src/components/todos/todo/todo.vue @@ -35,7 +35,7 @@ :after="[{icon: 'arrow_forward', content: true, handler () {}}]" v-on:keyup.enter="insertTodo"/> - + {{ tmpstrTodos }}
Get Todo diff --git a/src/store/Modules/Todos.ts b/src/store/Modules/Todos.ts index fbf0827..9293477 100644 --- a/src/store/Modules/Todos.ts +++ b/src/store/Modules/Todos.ts @@ -201,7 +201,7 @@ namespace Actions { // console.log('******* UPDATE TODOS.STATE.TODOS !:', res.todos) if (body.todos) { state.todos = [...body.todos] - // Todos.mutations.setTodos_changed() + Todos.mutations.setTodos_changed() } console.log('********** res', 'state.todos', state.todos, 'checkPending', checkPending)