From ec9729e22fded921d47ebe5e10e522a49e5a7d47 Mon Sep 17 00:00:00 2001 From: Geoff Kimball Date: Fri, 20 Nov 2015 11:36:26 -0800 Subject: [PATCH] When opening an issue from the docs, change the default issue title text to be all caps, to make it more obvious that you need to change it --- lib/handlebars.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/handlebars.js b/lib/handlebars.js index c98707cfd..d5b5803de 100644 --- a/lib/handlebars.js +++ b/lib/handlebars.js @@ -159,7 +159,7 @@ handlebars.registerHelper('editLink', function(value) { handlebars.registerHelper('issueLink', function(name) { return 'https://github.com/zurb/foundation-sites/issues/new?' + querystring.stringify({ - title: format('[{0}] Issue Name', [name]), + title: format('[{0}] ISSUE NAME HERE', [name]), body: ISSUE_TEXT }); }); -- 2.47.2