Skip to content

Commit

Permalink
Merge 620944f into 94ad4aa
Browse files Browse the repository at this point in the history
  • Loading branch information
macrigiuseppe committed Aug 1, 2021
2 parents 94ad4aa + 620944f commit c7cfa93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/kepler-integration/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const GlobalStyle = createGlobalStyle`
}
.load-data-modal__tab__item.active {
color: #fff
color: #fff;
border-bottom: 3px solid #fff;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ export class ExportVideoPanelContainer extends Component {
handleRenderVideo={this.onRenderVideo}
resolution={[canvasSize.width, canvasSize.height]}
rendering={rendering}
previewing={previewing}
/>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ const ExportVideoPanel = ({
resolution,
viewState,
rendering,
previewing,
deckProps,
staticMapProps
}) => {
Expand Down Expand Up @@ -136,7 +137,7 @@ const ExportVideoPanel = ({
<ExportVideoPanelFooter
handlePreviewVideo={handlePreviewVideo}
handleRenderVideo={handleRenderVideo}
rendering={rendering}
rendering={rendering || previewing}
/>
</Panel>
);
Expand Down

0 comments on commit c7cfa93

Please sign in to comment.