Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Apr 22, 2024
1 parent 82576f2 commit 794f26a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/locale/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, <b>{{guest}}</b> needs to contact <b>{{home}}</b> to request your information.",
personalBullet1sub1: "Learn what ",
Expand Down
5 changes: 3 additions & 2 deletions client/src/routes/Offering.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -834,7 +836,6 @@
<div class="hero">
{@html highFive}
</div>
<h3>{I18n.t("offering.next")}</h3>
<div class="final-action">
{@html lightBulb}
{#if result.message}
Expand Down
2 changes: 1 addition & 1 deletion server/src/test/java/broker/api/BrokerControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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<String, Object> result = given()
.filter(cookieFilter)
Expand Down

0 comments on commit 794f26a

Please sign in to comment.