Skip to content

Commit bfbb6e6

Browse files
committed
Fix adoption confirmation message and blog link
1 parent 98b712c commit bfbb6e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openstax/os-webview",
3-
"version": "2.68.0",
3+
"version": "2.68.1",
44
"description": "OpenStax webview",
55
"scripts": {
66
"test": "jest ./test/src"

src/app/components/shell/header/upper-menu/upper-menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import useGiveToday from '~/models/give-today';
55
import './upper-menu.css';
66

77
function BlogItem() {
8-
const data = useDataFromSlug('openstax-news');
8+
const data = useDataFromSlug('news');
99
const shouldDisplay = data && Reflect.has(data, 'articles') &&
1010
Object.keys(data.articles).length;
1111

src/app/pages/partners/partners.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function Confirmation() {
2323
{
2424
bookSlug &&
2525
<span>or return to
26-
<a href={`/details/${model.bookSlug}`}>your book</a>
26+
<a href={`/details/${bookSlug}`}>your book</a>
2727
</span>
2828
}
2929
.

0 commit comments

Comments
 (0)