Skip to content

Commit

Permalink
fix boTitle
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsam committed Dec 26, 2024
1 parent a078490 commit baa61f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions static/js/TextCategoryPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -292,13 +292,14 @@ const MenuItem = ({href, nestLevel, title, heTitle, cats, onClick, enDesc, heDes

const TextMenuItem = ({item, categories, nestLevel, onClick}) => {
const [title, heTitle] = getRenderedTextTitleString(item.title, item.heTitle, categories);
console.log("title : ", title, heTitle)
return (
<MenuItem
href = {"/" + Sefaria.normRef(item.title)}
onClick = {onClick}
nestLevel = {nestLevel}
title = {title}
heTitle = {heTitle}
title = {item.title}
heTitle = {item.heTitle}
enDesc = {item.enShortDesc}
heDesc = {item.heShortDesc}
/>
Expand Down

0 comments on commit baa61f3

Please sign in to comment.