Skip to content

Commit

Permalink
Merge pull request #536 from replicatedhq/jelena-airgap-scroll
Browse files Browse the repository at this point in the history
Fix- Kots airgap upload screen doesn't scroll
  • Loading branch information
jgruica committed May 18, 2020
2 parents 8d587d3 + e00d2f1 commit fd50112
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kotsadm/web/src/Root.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ class Root extends Component {
listApps={listApps}
isSnapshotsSupported={this.isSnapshotsSupported()}
/>
<div className="flex1 flex-column u-overflow--hidden">
<div className="flex1 flex-column u-overflow--auto">
<Switch>

<Route exact path="/" component={() => <Redirect to={Utilities.isLoggedIn() ? "/apps" : "/secure-console"} />} />
Expand Down
3 changes: 2 additions & 1 deletion kotsadm/web/src/components/AirgapUploadProgress.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ class AirgapUploadProgress extends React.Component {
);
}


return (
<div className="AirgapUploadProgress--wrapper flex1 flex-column alignItems--center justifyContent--center">
<div className="AirgapUploadProgress--wrapper flex-1-auto flex-column alignItems--center justifyContent--center">
<div className="flex1 flex-column u-color--tuna">
{processingImages ?
<div className="flex1 flex-column alignItems--center justifyContent--center">
Expand Down

0 comments on commit fd50112

Please sign in to comment.