Skip to content

Commit

Permalink
Merge pull request #66 from dolthub/taylor/dolthub-updates
Browse files Browse the repository at this point in the history
web: Some small UI fixes
  • Loading branch information
tbantle22 authored Dec 1, 2023
2 parents edc7118 + 5eb4afb commit 703bc9a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
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

0 comments on commit 703bc9a

Please sign in to comment.