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 c05da8a commit 4c32197Copy full SHA for 4c32197
packages/compass-data-modeling/src/components/diagram-editor.tsx
@@ -93,6 +93,12 @@ const modelPreviewContainerStyles = css({
93
94
const modelPreviewStyles = css({
95
minHeight: 0,
96
+
97
+ /** reactflow handles this normally, but there is a `* { userSelect: 'text' }` in this project,
98
+ * which overrides inherited userSelect */
99
+ ['.connectablestart']: {
100
+ userSelect: 'none',
101
+ },
102
});
103
104
type SelectedItems = NonNullable<DiagramState>['selectedItems'];
0 commit comments