From 794f26aff9b0cb7b1bc7ae096c4922732889f31f Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Mon, 22 Apr 2024 13:08:41 +0200 Subject: [PATCH] fixed build --- client/src/locale/en.js | 2 +- client/src/routes/Offering.svelte | 5 +++-- server/src/test/java/broker/api/BrokerControllerTest.java | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/client/src/locale/en.js b/client/src/locale/en.js index da2b9b3..e6f1b47 100644 --- a/client/src/locale/en.js +++ b/client/src/locale/en.js @@ -51,7 +51,7 @@ I18n.translations.en = { questionsWhere: "You will have to answer these questions within the LMS of {{abbreviation}}", goToLMS: "Answer the questions", next: "What will happen next?", - receiveMail: "You will receive mail from {{abbreviation}} what the next steps will be.", + receiveMail: "You have been successfully registered. You will receive mail from {{abbreviation}} what the next steps will be.", homeInstitution: "Your home institution", personal: "To proceed with this enrollment, {{guest}} needs to contact {{home}} to request your information.", personalBullet1sub1: "Learn what ", diff --git a/client/src/routes/Offering.svelte b/client/src/routes/Offering.svelte index 7f11686..bbe97f9 100644 --- a/client/src/routes/Offering.svelte +++ b/client/src/routes/Offering.svelte @@ -588,13 +588,15 @@ } :global(svg) { - margin-right: 12px; + margin: 0 12px auto 0; width: 66px; height: auto; } span.final-action-msg { margin: auto 0; + font-size: 16px; + line-height: 22px; } span.error-message { @@ -834,7 +836,6 @@
{@html highFive}
-

{I18n.t("offering.next")}

{@html lightBulb} {#if result.message} diff --git a/server/src/test/java/broker/api/BrokerControllerTest.java b/server/src/test/java/broker/api/BrokerControllerTest.java index 3cf2d10..70c45bb 100644 --- a/server/src/test/java/broker/api/BrokerControllerTest.java +++ b/server/src/test/java/broker/api/BrokerControllerTest.java @@ -111,7 +111,7 @@ public void brokerOfferingWithWrongQueueItToken() { .param("queueittoken", queueItToken) .get("/api/queue/redirect") .then() - .header("Location", "http://localhost:3003?error=409"); + .header("Location", "http://localhost:3003?error=407"); //If we now try to get the offering it will fail Map result = given() .filter(cookieFilter)