Skip to content

Commit

Permalink
Fix page title formatting in tender and analysis pages
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Feb 28, 2024
1 parent 4de6661 commit 4d8909a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/datasets/[tender]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Tender: React.FC<Props> = ({ data }) => {
return (
<>
<Head>
<title>OCI | {dataPackage.tender[0].title}</title>
<title>{`OCI | ${dataPackage.tender[0].title}`}</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="tender">
Expand Down
2 changes: 1 addition & 1 deletion pages/kpi/[analysis]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ const Analysis: React.FC<Props> = ({ data, csv }) => {
return (
<>
<Head>
<title>OCI | {dataPackage.title || dataPackage.name}</title>
<title>{`OCI | ${dataPackage.title}`}</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className=" analysis">
Expand Down

0 comments on commit 4d8909a

Please sign in to comment.