Skip to content

Commit

Permalink
Fix: Restoring PolarisRelatedTable scroll (#129)
Browse files Browse the repository at this point in the history
Co-authored-by: Emily Dodds <[email protected]>
  • Loading branch information
mumanity and mumanity authored Sep 23, 2022
1 parent 882c79f commit 75784b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ exports[`SceneLayout should not render camera preview if editing and non-camera
.c6 {
width: 400px;
height: 100%;
overflow-y: auto;
}
.c27 {
Expand Down Expand Up @@ -1255,6 +1256,7 @@ exports[`SceneLayout should render camera preview if editing and camera componen
.c6 {
width: 400px;
height: 100%;
overflow-y: auto;
}
.c27 {
Expand Down Expand Up @@ -2455,6 +2457,7 @@ exports[`SceneLayout should render correctly in Edit mode 1`] = `
.c6 {
width: 400px;
height: 100%;
overflow-y: auto;
}
.c27 {
Expand Down Expand Up @@ -3643,6 +3646,7 @@ exports[`SceneLayout should render correctly in Edit mode with Modal 1`] = `
.c8 {
width: 400px;
height: 100%;
overflow-y: auto;
}
.c29 {
Expand Down Expand Up @@ -4879,6 +4883,7 @@ exports[`SceneLayout should render correctly in Viewing mode 1`] = `
.c5 {
width: 400px;
height: 100%;
overflow-y: auto;
}
.c0 {
Expand Down Expand Up @@ -5447,6 +5452,7 @@ exports[`SceneLayout should render correctly in Viewing mode with modal 1`] = `
.c7 {
width: 400px;
height: 100%;
overflow-y: auto;
}
.c2 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import TabbedPanelContainer from './TabbedPanelContainer';
const FixedWidthDiv = styled.div`
width: 400px;
height: 100%;
overflow-y: auto;
`;

const LeftPanel: FC<Record<string, JSX.Element>> = (props) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ exports[`<LeftPanel /> should render the expencted layout 1`] = `
.c0 {
width: 400px;
height: 100%;
overflow-y: auto;
}
<div
Expand Down

0 comments on commit 75784b1

Please sign in to comment.