From 8f4a46ed2ed62f61b742132ad42af17c739bd92c Mon Sep 17 00:00:00 2001
From: Etienne Loupias <eloupias@grandlyon.com>
Date: Wed, 18 Dec 2024 16:35:11 +0100
Subject: [PATCH] test descr

---
 src/app/post/components/post-details/post-details.component.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/post/components/post-details/post-details.component.ts b/src/app/post/components/post-details/post-details.component.ts
index be250f225..48d0a857b 100644
--- a/src/app/post/components/post-details/post-details.component.ts
+++ b/src/app/post/components/post-details/post-details.component.ts
@@ -57,7 +57,7 @@ export class PostDetailsComponent implements OnInit {
 
     // set og tags (for linkedin post publication)
     this.meta.updateTag({ property: 'og:title', content: this.post.title });
-    this.meta.removeTag("property='og:description'");
+    this.meta.updateTag({ property: 'og:description', content: '' });
     this.meta.updateTag({ property: 'og:type', content: 'article' });
     this.meta.updateTag({ property: 'og:image', content: this.post.feature_image });
     this.meta.updateTag({ property: 'og:url', content: `${window.location.origin}${this.router.url}` });
-- 
GitLab