diff --git a/src/explore-education-statistics-frontend/src/modules/find-statistics/components/PublicationSummary.tsx b/src/explore-education-statistics-frontend/src/modules/find-statistics/components/PublicationSummary.tsx
index 042a9bdaa2..afa45c6185 100644
--- a/src/explore-education-statistics-frontend/src/modules/find-statistics/components/PublicationSummary.tsx
+++ b/src/explore-education-statistics-frontend/src/modules/find-statistics/components/PublicationSummary.tsx
@@ -12,15 +12,20 @@ interface Props {
}
const PublicationSummary = ({ publication }: Props) => {
- const { published, slug, summary, theme, title, type, releaseSlug } = publication;
+ const { published, slug, summary, theme, title, type, releaseSlug } =
+ publication;
return (
- {title}
+
+ {title}
+
{summary}
diff --git a/src/explore-education-statistics-frontend/src/modules/methodologies/MethodologyPage.tsx b/src/explore-education-statistics-frontend/src/modules/methodologies/MethodologyPage.tsx
index 0d49e1d832..55274e60ff 100644
--- a/src/explore-education-statistics-frontend/src/modules/methodologies/MethodologyPage.tsx
+++ b/src/explore-education-statistics-frontend/src/modules/methodologies/MethodologyPage.tsx
@@ -113,11 +113,13 @@ const MethodologyPage: NextPage = ({ data }) => {
{data.publications.map(publication => (
-
-
+
{publication.title}
{' '}
diff --git a/src/explore-education-statistics-frontend/src/modules/table-tool/components/TableToolFinalStep.tsx b/src/explore-education-statistics-frontend/src/modules/table-tool/components/TableToolFinalStep.tsx
index bcf7b96815..fed14e2ea7 100644
--- a/src/explore-education-statistics-frontend/src/modules/table-tool/components/TableToolFinalStep.tsx
+++ b/src/explore-education-statistics-frontend/src/modules/table-tool/components/TableToolFinalStep.tsx
@@ -97,11 +97,11 @@ const TableToolFinalStep = ({
@@ -185,8 +185,11 @@ const TableToolFinalStep = ({
methodologyLinks={getMethodologyLinks()}
releaseLink={
<>
- {selectedPublication.selectedRelease.slug && selectedPublication.latestRelease ? (
-
+ {selectedPublication.selectedRelease.slug &&
+ selectedPublication.latestRelease ? (
+
{`${selectedPublication.title}, ${selectedPublication.selectedRelease.title}`}
) : (
diff --git a/src/explore-education-statistics-frontend/src/modules/table-tool/components/__tests__/TableToolFinalStep.test.tsx b/src/explore-education-statistics-frontend/src/modules/table-tool/components/__tests__/TableToolFinalStep.test.tsx
index a938620e7f..3b3ca6ded9 100644
--- a/src/explore-education-statistics-frontend/src/modules/table-tool/components/__tests__/TableToolFinalStep.test.tsx
+++ b/src/explore-education-statistics-frontend/src/modules/table-tool/components/__tests__/TableToolFinalStep.test.tsx
@@ -173,7 +173,10 @@ describe('TableToolFinalStep', () => {
screen.getByRole('link', {
name: 'Test publication, Latest Release Title',
}),
- ).toHaveAttribute('href', '/find-statistics/test-publication/latest-release-slug');
+ ).toHaveAttribute(
+ 'href',
+ '/find-statistics/test-publication/latest-release-slug',
+ );
});
test('renders correctly when this is the latest data', async () => {
@@ -224,7 +227,10 @@ describe('TableToolFinalStep', () => {
screen.getByRole('link', {
name: 'View latest data: Latest Release Title',
}),
- ).toHaveAttribute('href', '/find-statistics/test-publication/selected-release-slug');
+ ).toHaveAttribute(
+ 'href',
+ '/find-statistics/test-publication/selected-release-slug',
+ );
expect(
screen.getByRole('link', {