File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
client/modules/User/pages Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ name: Deploy to production
22on :
33 workflow_run :
44 workflows : ["Test"]
5- branches :
6- - release
5+ tags :
6+ - ' * '
77 types :
88 - completed
99env :
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { connect } from 'react-redux';
44import { withTranslation } from 'react-i18next' ;
55
66import Nav from '../../../components/Nav' ;
7+ import RootPage from '../../../components/RootPage' ;
78
89import CollectionCreate from '../components/CollectionCreate' ;
910import Collection from '../components/Collection' ;
@@ -57,11 +58,11 @@ class CollectionView extends React.Component {
5758
5859 render ( ) {
5960 return (
60- < div className = "dashboard" >
61+ < RootPage >
6162 < Nav layout = "dashboard" />
6263
6364 { this . renderContent ( ) }
64- </ div >
65+ </ RootPage >
6566 ) ;
6667 }
6768}
You can’t perform that action at this time.
0 commit comments