Skip to content

Commit 55b3c24

Browse files
authored
Merge pull request #1963 from processing/bug/collection-view
[#1949] Add RootPage component to CollectionView
2 parents 3441eaf + 44398d5 commit 55b3c24

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Deploy to production
22
on:
33
workflow_run:
44
workflows: ["Test"]
5-
branches:
6-
- release
5+
tags:
6+
- '*'
77
types:
88
- completed
99
env:

client/modules/User/pages/CollectionView.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { connect } from 'react-redux';
44
import { withTranslation } from 'react-i18next';
55

66
import Nav from '../../../components/Nav';
7+
import RootPage from '../../../components/RootPage';
78

89
import CollectionCreate from '../components/CollectionCreate';
910
import 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
}

0 commit comments

Comments
 (0)