Duplicate Tags property in page properties.
Hi ,
I have extended tags property in my base page component using below code for basic tab so that i can make that field mandatory.
<basic
jcr:primaryType="nt:unstructured"
jcr:title="Basic"
sling:orderBefore="article"
sling:resourceSuperType="wcm/foundation/components/basicpage/v1/basicpage/tabs/basic"
sling:resourceType="granite/ui/components/coral/foundation/fixedcolumns">
<items jcr:primaryType="nt:unstructured">
<column jcr:primaryType="nt:unstructured">
<items jcr:primaryType="nt:unstructured">
<title jcr:primaryType="nt:unstructured">
<items jcr:primaryType="nt:unstructured">
<title
jcr:primaryType="nt:unstructured"
maxlength="{Long}70"
fieldDescription="Title must not exceed 70 characters."/>
<tags
jcr:primaryType="nt:unstructured"
required="true" />
</items>
</title>
However It is repeating tags property at the time of new page creation I edit existing page at that time it works fine.
