Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

web: Some small UI fixes #66

Merged
merged 2 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions web/components/SchemaDiagram/TableNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ function TableHandles({ data }: Props) {
key={h}
type="source"
position={Position.Right}
style={{ top: 30 * columnInd + 50, width: 0, height: 0 }}
style={{
top: 30 * columnInd + 50,
width: 0,
height: 0,
minWidth: 0,
minHeight: 0,
}}
isConnectable={false}
id={h}
/>
Expand All @@ -61,7 +67,13 @@ function TableHandles({ data }: Props) {
key={h}
type="target"
position={Position.Left}
style={{ top: 45 + 30 * columnInd, width: 0, height: 0 }}
style={{
top: 45 + 30 * columnInd,
width: 0,
height: 0,
minWidth: 0,
minHeight: 0,
}}
isConnectable={false}
id={h}
/>
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"apollo-upload-client": "^17.0.0",
"chance": "^1.1.11",
"classnames": "^2.3.2",
"commit-graph": "^1.6.0",
"commit-graph": "^1.6.11",
"diff": "^5.1.0",
"github-markdown-css": "^5.3.0",
"graphql": "^16.8.1",
Expand Down
10 changes: 5 additions & 5 deletions web/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ __metadata:
babel-jest: ^29.7.0
chance: ^1.1.11
classnames: ^2.3.2
commit-graph: ^1.6.0
commit-graph: ^1.6.11
cssnano: ^6.0.1
diff: ^5.1.0
eslint: ^8.52.0
Expand Down Expand Up @@ -5220,16 +5220,16 @@ __metadata:
languageName: node
linkType: hard

"commit-graph@npm:^1.6.0":
version: 1.6.0
resolution: "commit-graph@npm:1.6.0"
"commit-graph@npm:^1.6.11":
version: 1.6.11
resolution: "commit-graph@npm:1.6.11"
dependencies:
classnames: ^2.3.2
next: ^13.4.4
react: ^18.2.0
react-dom: ^18.2.0
react-tooltip: ^5.19.0
checksum: 8fdf684e304cef22a8936524e506be6e795e94e3552b23ec6a663c1a39ed8eaab140a31d869e45ac124401b936e21bedad91af71e017cdb127a974754bb01066
checksum: 22a3afd9d38f36dd672e9200cfe3488dc6d9cb6bd8f69025f7dcdc260a7a56646c2515ed4ccb918edd52440fd3a80cebfbf7590c5165410093a5d70f9d55e1b2
languageName: node
linkType: hard

Expand Down
Loading