This repository was archived by the owner on Apr 29, 2019. It is now read-only.
File tree 3 files changed +5
-4
lines changed
app/code/Magento/CmsGraphQl
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ private function processCmsPage(CmsPageInterface $cmsPageModel) : array
70
70
'content_heading ' => $ cmsPageModel ->getContentHeading (),
71
71
'layout ' => $ cmsPageModel ->getPageLayout (),
72
72
'mate_title ' => $ cmsPageModel ->getMetaTitle (),
73
- 'mate_description ' => $ cmsPageModel ->getMetaDescription (),
74
- 'mate_keywords ' => $ cmsPageModel ->getMetaKeywords (),
73
+ 'meta_description ' => $ cmsPageModel ->getMetaDescription (),
74
+ 'meta_keywords ' => $ cmsPageModel ->getMetaKeywords (),
75
75
];
76
76
77
77
return $ cmsPageData ;
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ type CmsPage @doc(description: "CMS page defines all CMS page information") {
14
14
content_heading : String @doc (description : " CMS page content heading" )
15
15
layout : String @doc (description : " CMS page content heading" )
16
16
mate_title : String @doc (description : " CMS page meta title" )
17
- mate_description : String @doc (description : " CMS page meta description" )
18
- mate_keywords : String @doc (description : " CMS page meta keywords" )
17
+ meta_description : String @doc (description : " CMS page meta description" )
18
+ meta_keywords : String @doc (description : " CMS page meta keywords" )
19
19
}
Original file line number Diff line number Diff line change 3
3
* Copyright © Magento, Inc. All rights reserved.
4
4
* See COPYING.txt for license details.
5
5
*/
6
+ declare (strict_types=1 );
6
7
7
8
use Magento \Framework \Component \ComponentRegistrar ;
8
9
You can’t perform that action at this time.
0 commit comments