Skip to content

Commit

Permalink
fix(DMX): Fixes an issue where DMX config columns don't have scrollba…
Browse files Browse the repository at this point in the history
…rs. Closes #3040
  • Loading branch information
alexanderson1993 committed Dec 2, 2020
1 parent 75f9646 commit 54a3bda
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/containers/FlightDirector/DMX/configs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ const DMXConfigs: React.FC = () => {
css={css`
display: flex;
flex-direction: column;
overflow-y: hidden;
`}
>
<SearchableList
Expand Down
1 change: 1 addition & 0 deletions src/containers/FlightDirector/DMX/devices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const DMXDevices: React.FC = () => {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: hidden;
`}
>
<SearchableList
Expand Down
1 change: 1 addition & 0 deletions src/containers/FlightDirector/DMX/fixtures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ const DMXFixtures: React.FC<{
css={css`
display: flex;
flex-direction: column;
overflow-y: hidden;
`}
>
<h3>Fixtures</h3>
Expand Down
1 change: 1 addition & 0 deletions src/containers/FlightDirector/DMX/sets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const DMXSets: React.FC = () => {
css={css`
display: flex;
flex-direction: column;
overflow-y: hidden;
`}
>
<h3>Sets</h3>
Expand Down

0 comments on commit 54a3bda

Please sign in to comment.