From 070db361f749fbd1103d2ad61ed18e5f7bedebaf Mon Sep 17 00:00:00 2001 From: "Zeller, Christina" Date: Thu, 4 Aug 2022 12:47:17 +0200 Subject: [PATCH] global: strings with url/Url should be URL Refs: https://github.com/inveniosoftware/invenio-app-rdm/issues/1707 --- src/lib/components/Funding/FundingModal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Funding/FundingModal.js b/src/lib/components/Funding/FundingModal.js index 973b1823..9376b27f 100644 --- a/src/lib/components/Funding/FundingModal.js +++ b/src/lib/components/Funding/FundingModal.js @@ -82,7 +82,7 @@ const CustomFundingSchema = Yup.object().shape({ .url(i18next.t("URL must be valid.")) .test({ name: "validateUrlDependencies", - message: i18next.t("Url must be set alongside title and number."), + message: i18next.t("URL must be set alongside title and number."), test: function testUrl(value) { const { title, number } = this.parent;