diff --git a/src/commands/new.js b/src/commands/new.js index 72f3e46..97dcb5a 100644 --- a/src/commands/new.js +++ b/src/commands/new.js @@ -60,7 +60,7 @@ module.exports = class NewCommand extends Command { let list = tickets.rows.map(row => { if (row.topic) { let description = row.topic.substring(0, 30); - let ellipses = description.length > 30 ? '...' : ''; + let ellipses = row.topic.length > 30 ? '...' : ''; return `<#${row.id}>: \`${description}${ellipses}\``; } else { return `<#${row.id}>`; @@ -171,4 +171,4 @@ module.exports = class NewCommand extends Command { } } -}; \ No newline at end of file +};