Commit 5ea6e56dfd2a564632fb28da8cb907fff8464ec4
Use first line of issue text as its title.
Stephen Whitmore committed on 11/9/2016, 3:51:09 PMParent: 5233d165cc9dd6811f63268db441635bffdb746f
Files changed
index.js | changed |
index.js | ||
---|---|---|
@@ -177,9 +177,9 @@ | ||
177 | 177 … | if (cb) { |
178 | 178 … | if (issue.open == null) |
179 | 179 … | issue.open = true |
180 | 180 … | if (issue.title == null) |
181 | - issue.title = truncate(issue.text, 40) || issue.id | |
181 … | + issue.title = truncate(issue.text.split('\n')[0], 250) || issue.id | |
182 | 182 … | checkReady() |
183 | 183 … | } |
184 | 184 … | } |
185 | 185 … |
Built with git-ssb-web