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

[1/n] Asset graph sidebar #16447

Merged
merged 15 commits into from
Sep 20, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ const MeasureWidth = styled.div`
height: 0;
overflow: hidden;
white-space: nowrap;
user-select: none;
visibility: hidden;
salazarm marked this conversation as resolved.
Show resolved Hide resolved
`;

const Container = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const TextInputContainerStyles = css`
position: relative;
`;

export const TextInputContainer = styled.div<{$disabled: boolean}>`
export const TextInputContainer = styled.div<{$disabled?: boolean}>`
${TextInputContainerStyles}

> ${IconWrapper}:first-child {
Expand Down
1 change: 1 addition & 0 deletions js_modules/dagster-ui/packages/ui-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export * from './components/styles';
export * from './components/useSuggestionsForString';
export * from './components/ErrorBoundary';
export * from './components/useViewport';
export * from './components/UnstyledButton';
export * from './components/StyledRawCodeMirror';

// Global font styles, exported as styled-component components to render in
Expand Down
Loading