Make bookmark visible

This commit is contained in:
Lorenz Padberg 2024-04-02 10:22:54 +02:00
parent a4b8f2d18d
commit 666339701f
1 changed files with 1 additions and 1 deletions

View File

@ -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}`];