fix(core): update
This commit is contained in:
parent
5e8a91f302
commit
b999627ba5
@ -42,7 +42,8 @@ const addOpenGraphProperty = async (
|
|||||||
contentArg: string
|
contentArg: string
|
||||||
): Promise<Element> => {
|
): Promise<Element> => {
|
||||||
const openGraphElement = document.createElement('meta');
|
const openGraphElement = document.createElement('meta');
|
||||||
openGraphElement.name = propertyNameArg;
|
const anonGE: any = openGraphElement;
|
||||||
|
anonGE.property = propertyNameArg;
|
||||||
openGraphElement.content = contentArg;
|
openGraphElement.content = contentArg;
|
||||||
document.getElementsByTagName('head')[0].appendChild(openGraphElement);
|
document.getElementsByTagName('head')[0].appendChild(openGraphElement);
|
||||||
return openGraphElement;
|
return openGraphElement;
|
||||||
|
Loading…
Reference in New Issue
Block a user