Format
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2020-06-15 23:48:01 +02:00
parent 876ac88a1d
commit 38c7348aa8
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -128,8 +128,8 @@ class _ListPageState extends State<ListPage> {
_addItem(String name, BuildContext context) {
var globalState = VikunjaGlobal.of(context);
var newTask =
Task(id: null, title: name, owner: globalState.currentUser, done: false);
var newTask = Task(
id: null, title: name, owner: globalState.currentUser, done: false);
setState(() => _loadingTasks.add(newTask));
globalState.taskService.add(_list.id, newTask).then((task) {
setState(() {