fix toolbar requests for empty choice (#758)

This commit is contained in:
Kevin Papst
2019-05-05 08:31:13 +02:00
committed by GitHub
parent 6e224c63ef
commit 80af3fb010
12 changed files with 69 additions and 32 deletions

View File

@@ -1108,7 +1108,7 @@ class KimaiImporterCommand extends Command
$io->error('Found invalid mapped project - activity combinations in these old timesheet recors: ' . implode(',', $errors['projectActivityMismatch']));
}
if ($failed > 0) {
$io->error(sprintf('Failed importing %s timesheet records', count($failed)));
$io->error(sprintf('Failed importing %s timesheet records', $failed));
}
return $counter;