We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a2658b commit 0b21b8bCopy full SHA for 0b21b8b
1 file changed
apps/roam/src/components/canvas/Clipboard.tsx
@@ -992,9 +992,15 @@ const ClipboardPageSection = ({
992
</div>
993
) : visibleGroupedNodes.length === 0 ? (
994
<div className="rounded border border-dashed border-gray-200 p-2">
995
+
996
{searchQuery || selectedNodeType !== "All"
- ? "No nodes match the current filters."
997
+ ? showNodesOnCanvas
998
+ ? "No nodes match the current filters."
999
+ : "No nodes match the current filters, or matching nodes are already on canvas. Turn on \"Show nodes on canvas\" to view them."
1000
+ : showNodesOnCanvas
1001
+ ? "All nodes from this page are already on canvas."
1002
: 'All nodes from this page are already on canvas. Turn on "Show nodes on canvas" to view them.'}
1003
1004
1005
) : (
1006
<div className="space-y-1">
0 commit comments