Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/modules/Literature/LiteratureEdition.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ class LiteratureEdition extends Component {

return withLabel ? (
<>
<label>edition</label> {edition}
{edition} <label>edition</label>
</>
) : (
`ed. ${edition}`
`${edition} ed.`
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ exports[`PatronCurrentBorrowingRequests tests should render patron borrowing req
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down Expand Up @@ -1043,7 +1043,7 @@ exports[`PatronCurrentBorrowingRequests tests should render patron borrowing req
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down Expand Up @@ -2067,7 +2067,7 @@ exports[`PatronCurrentBorrowingRequests tests should render the see all button w
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ exports[`PatronPastBorrowingRequests tests should render patron borrowing reques
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down Expand Up @@ -1042,7 +1042,7 @@ exports[`PatronPastBorrowingRequests tests should render patron borrowing reques
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down Expand Up @@ -2054,7 +2054,7 @@ exports[`PatronPastBorrowingRequests tests should render the see all button when
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ exports[`PatronLoans tests should render patron loans 1`] = `
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down Expand Up @@ -868,7 +868,7 @@ exports[`PatronLoans tests should render patron loans 1`] = `
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down Expand Up @@ -1710,7 +1710,7 @@ exports[`PatronLoans tests should render the see all button when showing only a
edition="1"
withLabel={false}
>
ed. 1
1 ed.
</LiteratureEdition>
</Overridable(LiteratureEdition)>
-
Expand Down
Loading