feat: limit short syntax to a lesser degree

This commit is contained in:
Johannes Millan 2018-04-08 22:18:52 +02:00
parent 3d0cfc8698
commit e1cc08f22d

View file

@ -6,7 +6,7 @@
* Service in the superProductivity.
*/
(function () {
(function() {
'use strict';
angular
@ -20,7 +20,7 @@
return (task) => {
if ($rootScope.r.config && $rootScope.r.config.isShortSyntaxEnabled) {
if (!task.originalKey && !task.timeEstimate && !task.subTasks) {
if (!task.subTasks) {
let matches = timeEstimateRegExp.exec(task.title);
if (matches) {