diff --git a/client/src/components/content-blocks/ContentComponent.vue b/client/src/components/content-blocks/ContentComponent.vue index 97dd967c..b3ee3d62 100644 --- a/client/src/components/content-blocks/ContentComponent.vue +++ b/client/src/components/content-blocks/ContentComponent.vue @@ -139,7 +139,7 @@ const note = computed(() => { return bookmark && bookmark.note; }); const showBookmarkActions = computed( - () => props.component.type !== 'content_list' && props.component.type !== 'basic_knowledge' && !props.editMode + () => props.component.type !== 'content_list' && !props.editMode ); const componentClass = computed(() => { let classes = ['content-component', `content-component--${props.component.type}`];