We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db37c2 commit e0813b3Copy full SHA for e0813b3
src/blocks/Questions/Questions.tsx
@@ -15,6 +15,7 @@ const FaqMicrodataValues = {
15
PageType: 'https://schema.org/FAQPage',
16
QuestionType: 'https://schema.org/Question',
17
QuestionProp: 'mainEntity',
18
+ QuestionNameProp: 'name',
19
QuestionTextProp: 'text',
20
AnswerType: 'https://schema.org/Answer',
21
AnswerProp: 'acceptedAnswer',
@@ -69,7 +70,7 @@ const QuestionsBlock = (props: QuestionsProps) => {
69
70
className={b('item-title')}
71
onClick={() => toggleItem(index)}
72
>
- <HTML itemProp={FaqMicrodataValues.QuestionTextProp}>
73
+ <HTML itemProp={FaqMicrodataValues.QuestionNameProp}>
74
{itemTitle}
75
</HTML>
76
<ToggleArrow
0 commit comments