diff --git a/cypress/e2e/batch_creation.cy.js b/cypress/e2e/batch_creation.cy.js index 45669db3..a6528969 100644 --- a/cypress/e2e/batch_creation.cy.js +++ b/cypress/e2e/batch_creation.cy.js @@ -47,7 +47,7 @@ describe("Batch Creation", () => { cy.closeOnboardingModal(); // Create a batch - cy.get("button").contains("New").click(); + cy.get("button").contains("Create").click(); cy.wait(500); cy.url().should("include", "/batches/new/edit"); cy.get("label").contains("Title").type("Test Batch"); diff --git a/cypress/e2e/course_creation.cy.js b/cypress/e2e/course_creation.cy.js index 2530b3db..e8120051 100644 --- a/cypress/e2e/course_creation.cy.js +++ b/cypress/e2e/course_creation.cy.js @@ -8,7 +8,7 @@ describe("Course Creation", () => { cy.closeOnboardingModal(); // Create a course - cy.get("button").contains("New").click(); + cy.get("button").contains("Create").click(); cy.wait(500); cy.url().should("include", "/courses/new/edit"); diff --git a/frontend/src/components/BatchOverlay.vue b/frontend/src/components/BatchOverlay.vue index 5906a25b..fdd3a893 100644 --- a/frontend/src/components/BatchOverlay.vue +++ b/frontend/src/components/BatchOverlay.vue @@ -65,6 +65,10 @@ }" > diff --git a/frontend/src/pages/BatchForm.vue b/frontend/src/pages/BatchForm.vue index 140147c3..ca21cf5d 100644 --- a/frontend/src/pages/BatchForm.vue +++ b/frontend/src/pages/BatchForm.vue @@ -4,9 +4,16 @@ class="sticky top-0 z-10 flex items-center justify-between border-b bg-surface-white px-3 py-2.5 sm:px-5" > - +
+ + +
@@ -303,10 +310,11 @@