mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 03:00:57 +00:00
feat: limit short syntax to a lesser degree
This commit is contained in:
parent
3d0cfc8698
commit
e1cc08f22d
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue