diff --git a/src/custom.cpp b/src/custom.cpp index b56278ac9..bc89f8702 100644 --- a/src/custom.cpp +++ b/src/custom.cpp @@ -177,7 +177,10 @@ std::string runCustomReport ( int row = 0; foreach (task, tasks) - table.addCell (row++, columnCount, task->id); + if (task->id != 0) + table.addCell (row++, columnCount, task->id); + else + table.addCell (row++, columnCount, "-"); } else if (*col == "uuid")