We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 687d616 commit 1c27ee5Copy full SHA for 1c27ee5
packages/compass-data-modeling/src/components/diagram-editor.tsx
@@ -92,6 +92,12 @@ const modelPreviewContainerStyles = css({
92
93
const modelPreviewStyles = css({
94
minHeight: 0,
95
+
96
+ /** reactflow handles this normally, but there is a `* { userSelect: 'text' }` in this project,
97
+ * which overrides inherited userSelect */
98
+ ['.connectablestart']: {
99
+ userSelect: 'none',
100
+ },
101
});
102
103
type SelectedItems = NonNullable<DiagramState>['selectedItems'];
0 commit comments