File tree 2 files changed +5
-4
lines changed
client/modules/User/pages
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
2
2
on :
3
3
workflow_run :
4
4
workflows : ["Test"]
5
- branches :
6
- - release
5
+ tags :
6
+ - ' * '
7
7
types :
8
8
- completed
9
9
env :
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { connect } from 'react-redux';
4
4
import { withTranslation } from 'react-i18next' ;
5
5
6
6
import Nav from '../../../components/Nav' ;
7
+ import RootPage from '../../../components/RootPage' ;
7
8
8
9
import CollectionCreate from '../components/CollectionCreate' ;
9
10
import Collection from '../components/Collection' ;
@@ -57,11 +58,11 @@ class CollectionView extends React.Component {
57
58
58
59
render ( ) {
59
60
return (
60
- < div className = "dashboard" >
61
+ < RootPage >
61
62
< Nav layout = "dashboard" />
62
63
63
64
{ this . renderContent ( ) }
64
- </ div >
65
+ </ RootPage >
65
66
) ;
66
67
}
67
68
}
You can’t perform that action at this time.
0 commit comments