Merge remote-tracking branch 'origin/master'

This commit is contained in:
Isaac 2021-04-21 20:55:46 +01:00
commit 353cb5795e

View File

@ -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 {
}
}
};
};