Skip to content

Commit

Permalink
[ui] Make gantt boxes wider in non-timed views (#20976)
Browse files Browse the repository at this point in the history
  • Loading branch information
bengotow and bengotow authored Apr 3, 2024
1 parent 6b1a69b commit 87dfd5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const FLAT_INSET_FROM_PARENT = 16;
export const BOX_HEIGHT = 34;
export const BOX_MARGIN_Y = 5;
export const BOX_SPACING_X = 20;
export const BOX_WIDTH = 100;
export const BOX_WIDTH = 200;
export const BOX_DOT_WIDTH_CUTOFF = 8;
export const BOX_SHOW_LABEL_WIDTH_CUTOFF = 30;
export const BOX_DOT_SIZE = 6;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('toGraphQueryItems', () => {
key: 'depends_on_nothing',
root: true,
state: undefined,
width: 100,
width: 200,
x: 16,
y: 0,
});
Expand All @@ -37,8 +37,8 @@ describe('toGraphQueryItems', () => {
key: 'depends_on_yesterday',
root: false,
state: undefined,
width: 100,
x: 152,
width: 200,
x: 252,
y: 1,
});
});
Expand Down

1 comment on commit 87dfd5e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagit-core-storybook ready!

✅ Preview
https://dagit-core-storybook-973c4r42f-elementl.vercel.app

Built with commit 87dfd5e.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.