diff --git a/src/commands/curator/supports.js b/src/commands/curator/supports.js index 45ef97d..5819ac9 100644 --- a/src/commands/curator/supports.js +++ b/src/commands/curator/supports.js @@ -48,8 +48,8 @@ module.exports = class Supports extends Command { const paginator = new GenericPager(this.client, message, { items: supports, header: `All supports for <@${discordID || message.author.id}>${ - givenClaim ? ` on claim \`${givenClaim}\`` : ''}`, itemTitle: 'Supports', - display: item => `*lbry://**${item.name}***#\`${item.claim_id}\` (${item.amount} LBC)` + givenClaim ? ` on claim \`${givenClaim}\`` : ''}`, itemTitle: 'Supports',itemsPerPage: 5, + display: item => `> ${item.name} #\`${item.claim_id}\`\n> ${item.amount} LBC\n` }); return paginator.start(message.channel.id, message.author.id); } diff --git a/src/commands/trusted/tsupports.js b/src/commands/trusted/tsupports.js index 3038751..c6bd5a2 100644 --- a/src/commands/trusted/tsupports.js +++ b/src/commands/trusted/tsupports.js @@ -29,8 +29,8 @@ module.exports = class TSupports extends Command { const paginator = new GenericPager(this.client, message, { items: supports, header: `All supports for the trusted account${ - givenClaim ? ` on claim \`${givenClaim}\`` : ''}`, itemTitle: 'Supports', - display: item => `*lbry://**${item.name}***#\`${item.claim_id}\` (${item.amount} LBC)` + givenClaim ? ` on claim \`${givenClaim}\`` : ''}`, itemTitle: 'Supports', itemsPerPage: 5, + display: item => `> ${item.name} #\`${item.claim_id}\`\n> ${item.amount} LBC\n` }); return paginator.start(message.channel.id, message.author.id); }