Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
rfmt(semester): fix missing component
Browse files Browse the repository at this point in the history
  • Loading branch information
AteKitty07 committed Nov 22, 2022
1 parent 70604ef commit 4654cf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pages/semester/create.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
type="date"/>
<DateSelector
v-model="endAt"
class="field end date"
class="field end-at date"
label="Ends at:"
type="date"/>
<button
Expand Down
4 changes: 2 additions & 2 deletions pages/semester/create.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ describe("Page: /semester", () => {

const nameInput = wrapper.find(".name input")
const orderInput = wrapper.find(".order select")
const startAtInput = wrapper.find(".start input")
const endAtInput = wrapper.find(".end input")
const startAtInput = wrapper.find(".start-at input")
const endAtInput = wrapper.find(".end-at input")
const submitBtn = wrapper.find("button[type=submit]")

await nameInput.setValue(semester.data.name)
Expand Down

0 comments on commit 4654cf7

Please sign in to comment.