From 177a9cd990ca56a2bb56369a751252329dc9bd7a Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Sat, 13 Jul 2024 23:23:18 +0200 Subject: [PATCH] adjust wording of alert label --- commands/interaction/slash/utils/weather.js | 2 +- commands/message/utils/weather.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/interaction/slash/utils/weather.js b/commands/interaction/slash/utils/weather.js index da923ad..5835d1b 100644 --- a/commands/interaction/slash/utils/weather.js +++ b/commands/interaction/slash/utils/weather.js @@ -56,7 +56,7 @@ module.exports = { if(data.result.warnings.length >= 1){ description += `\n` for(const w of data.result.warnings){ - description += `\n${icon("warning")} **${w.label}**\n-# ${w.source} • ${link(w.url, "More about this alert", "Learn more about this alert")}` + description += `\n${icon("warning")} **${w.label}**\n-# ${w.source} • ${link(w.url, "Learn More", "Learn more about this alert")}` } } diff --git a/commands/message/utils/weather.js b/commands/message/utils/weather.js index e7ee59d..3bd46a4 100644 --- a/commands/message/utils/weather.js +++ b/commands/message/utils/weather.js @@ -42,7 +42,7 @@ module.exports = { if(data.result.warnings.length >= 1){ description += `\n` for(const w of data.result.warnings){ - description += `\n${icon("warning")} **${w.label}**\n-# ${w.source} • ${link(w.url, "More about this alert", "Learn more about this alert")}` + description += `\n${icon("warning")} **${w.label}**\n-# ${w.source} • ${link(w.url, "Learn More", "Learn more about this alert")}` } }