We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f09c5 commit ab8a9a8Copy full SHA for ab8a9a8
src/scripts/scrumHelper.js
@@ -346,7 +346,7 @@ ${userReason}`;
346
if (month < 10) month = '0' + month;
347
if (date < 10) date = '0' + date;
348
var dateCode = year.toString() + month.toString() + date.toString();
349
- scrumSubject.value = '[Scrum] ' + name + ' - ' + project + ' - ' + dateCode + ' - False';
+ scrumSubject.value = '[Scrum] ' + name + ' - ' + project + ' - ' + dateCode ;
350
scrumSubject.dispatchEvent(new Event('input', { bubbles: true }));
351
});
352
} catch (err) {
0 commit comments