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 c529869 commit 3b28165Copy full SHA for 3b28165
src/blocks/Questions/Questions.tsx
@@ -29,7 +29,12 @@ const QuestionsBlock = (props: QuestionsProps) => {
29
};
30
31
return (
32
- <div className={b()} itemScope itemType={FaqMicrodataValues.PageType}>
+ <div
33
+ className={b()}
34
+ itemScope
35
+ itemType={FaqMicrodataValues.PageType}
36
+ itemID={FaqMicrodataValues.PageId}
37
+ >
38
<Row>
39
<Col sizes={{all: 12, md: 4}}>
40
<div className={b('title')}>
src/blocks/Questions/models.ts
@@ -1,5 +1,6 @@
1
export const FaqMicrodataValues = {
2
PageType: 'https://schema.org/FAQPage',
3
+ PageId: '/faq',
4
QuestionType: 'https://schema.org/Question',
5
QuestionProp: 'mainEntity',
6
QuestionNameProp: 'name',
0 commit comments