File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import hasPermission from '~/utils/permissions' ;
2+ import styles from './PRDashboard.module.css' ;
23
34function PRDashboard ( { authUser } ) {
45 if ( ! hasPermission ( 'accessPRTeamDashboard' , authUser ?. permissions ) ) {
@@ -7,7 +8,7 @@ function PRDashboard({ authUser }) {
78
89 return (
910 < div >
10- < h1 > PR Team Dashboard</ h1 >
11+ < h1 className = { ` ${ styles . prdashcontainer } ` } > PR Team Dashboard</ h1 >
1112 { /* actual dashboard content */ }
1213 </ div >
1314 ) ;
Original file line number Diff line number Diff line change 1+ .prdashcontainer {
2+ padding : 2rem ;
3+ }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import Timelog from './components/Timelog';
2020import UserProfileEdit from './components/UserProfile/UserProfileEdit' ;
2121import EditableInfoModal from './components/UserProfile/EditableModal/EditableInfoModal' ;
2222import RoleInfoCollections from './components/UserProfile/EditableModal/RoleInfoModal' ;
23- import PRDashboard from './components/PRDashboard' ;
23+ import PRDashboard from './components/PRDashboard/PRDashboard ' ;
2424import ApplicationTimeChartPage from './components/ApplicationTimeChart' ;
2525import ApplicantsChart from './components/ApplicantsChart' ;
2626import ApplicationAnalyticsContainer from './components/ApplicationAnalytics' ;
You can’t perform that action at this time.
0 commit comments