diff --git a/packages/frontend/core/src/components/explorer/docs-view/doc-list-item.tsx b/packages/frontend/core/src/components/explorer/docs-view/doc-list-item.tsx index 335399f417..641787b329 100644 --- a/packages/frontend/core/src/components/explorer/docs-view/doc-list-item.tsx +++ b/packages/frontend/core/src/components/explorer/docs-view/doc-list-item.tsx @@ -371,40 +371,47 @@ export const CardViewDoc = ({ docId }: DocListItemProps) => { const selectMode = useLiveData(contextValue.selectMode$); const docsService = useService(DocsService); const doc = useLiveData(docsService.list.doc$(docId)); + const showMoreOperation = useLiveData(contextValue.showMoreOperation$); if (!doc) { return null; } return ( -
  • - -
    - - - {quickActions.map(action => { - return ( - - - - ); - })} - {selectMode ? ( - + ) : ( + + )} +
    + + +
  • + ); };