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