diff --git a/frontend_nuxt/pages/posts/[id]/index.vue b/frontend_nuxt/pages/posts/[id]/index.vue index cbd70f071..8fd467b82 100644 --- a/frontend_nuxt/pages/posts/[id]/index.vue +++ b/frontend_nuxt/pages/posts/[id]/index.vue @@ -366,7 +366,11 @@ const changeLogIcon = (l) => { return 'unlock' } } else if (l.type === 'PINNED') { - return 'pin-icon' + if(l.newPinnedAt){ + return 'pin' + }else{ + return 'clear-icon' + } } else if (l.type === 'FEATURED') { if (l.newFeatured) { return 'star'