From 39f0700a929ae49b1c97ef3380434f6710aaf754 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Thu, 10 Jun 2021 20:05:27 -0500 Subject: [PATCH] Update supports format --- src/commands/curator/supports.js | 4 ++-- src/commands/trusted/tsupports.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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); }