Fix ConfirmRunModal not showing up in view mode (#551)

This commit is contained in:
akash-codemonk 2020-09-16 15:14:07 +05:30 committed by GitHub
parent ce628768bb
commit 5891d40271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,7 @@ import {
getCanvasWidgetDsl,
getCurrentPageName,
} from "selectors/editorSelectors";
import ConfirmRunModal from "pages/Editor/ConfirmRunModal";
const Section = styled.section`
background: ${props => props.theme.colors.bodyBG};
@ -100,6 +101,7 @@ class AppViewerPageContainer extends Component<AppViewerPageContainerProps> {
pageId={this.props.match.params.pageId}
pageName={this.props.currentPageName}
/>
<ConfirmRunModal />
</Section>
);
}