Skip to content

Commit

Permalink
Fix label picker shortcut #143
Browse files Browse the repository at this point in the history
  • Loading branch information
mgsloan committed Jul 2, 2020
1 parent ae78cfa commit f951c40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/todoist-shortcuts.js
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,9 @@
}
var predicate = or(matchingText('Labels'),
matchingAction('multi-select-toolbar-label-picker'));
withUniqueTag(document, 'button', predicate, click);
withUniqueClass(document, 'multi_select_toolbar', all, function(toolbar) {
withUniqueTag(toolbar, 'button', predicate, click);
});
}

var TIMER_CLASSES = ['toggl-button', 'clockify-button-inactive', 'clockify-button-active'];
Expand Down

0 comments on commit f951c40

Please sign in to comment.