diff options
author | 2019-12-16 00:47:51 +0700 | |
---|---|---|
committer | 2019-12-16 00:47:51 +0700 | |
commit | 0b204c638f62116f3d34d64762966ad5683b194f (patch) | |
tree | 36ddff538ce853339f1ab395a299afb067bda253 /source/features/batch-open-issues.tsx | |
parent | 5317a69cff0558709437dd0e1694cba5f07d467f (diff) | |
download | refined-github-0b204c638f62116f3d34d64762966ad5683b194f.tar.gz refined-github-0b204c638f62116f3d34d64762966ad5683b194f.tar.zst refined-github-0b204c638f62116f3d34d64762966ad5683b194f.zip |
Small meta changes (#2626)
Diffstat (limited to 'source/features/batch-open-issues.tsx')
-rw-r--r-- | source/features/batch-open-issues.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/batch-open-issues.tsx b/source/features/batch-open-issues.tsx index 6499c899..f85c62a7 100644 --- a/source/features/batch-open-issues.tsx +++ b/source/features/batch-open-issues.tsx @@ -16,7 +16,7 @@ function openIssues(): void { const issues = select.all([ `#js-issues-toolbar.triage-mode ${modifier} [name="issues[]"]:checked`, // Get checked checkboxes `#js-issues-toolbar:not(.triage-mode) ${modifier} .js-issue-row` // Or all items - ].join(',')); + ]); if ( issues.length >= confirmationRequiredCount && |