File tree Expand file tree Collapse file tree 5 files changed +6
-10
lines changed Expand file tree Collapse file tree 5 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export class BuildingHoursList extends React.Component {
4141 }
4242
4343 renderSectionHeader = ( data : any , id : string ) => {
44- return < ListSectionHeader style = { styles . rowSectionHeader } title = { id } />
44+ return < ListSectionHeader title = { id } />
4545 }
4646
4747 renderSeparator = ( sectionID : any , rowID : any ) => {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default function EventRow({
4242 const title = fastGetTrimmedText ( event . summary )
4343
4444 const location = event . location && event . location . trim ( ) . length
45- ? < Detail style = { styles . detail } > { event . location } </ Detail >
45+ ? < Detail > { event . location } </ Detail >
4646 : null
4747
4848 return (
@@ -63,7 +63,7 @@ export default function EventRow({
6363 paddingBottom = { 3 }
6464 justifyContent = "space-between"
6565 >
66- < Title style = { styles . title } > { title } </ Title >
66+ < Title > { title } </ Title >
6767 { location }
6868 </ Column >
6969 </ Row >
Original file line number Diff line number Diff line change @@ -35,10 +35,7 @@ export function ButtonCell({
3535 onPress = { onPress }
3636 title = {
3737 < Text
38- style = { [
39- styles . text ,
40- indeterminate || disabled ? styles . disabled : styles . active ,
41- ] }
38+ style = { [ indeterminate || disabled ? styles . disabled : styles . active ] }
4239 >
4340 { title }
4441 </ Text >
Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ class FancyMenuView extends React.Component {
9696 < ListSeparator
9797 spacing = { { left : leftSideSpacing } }
9898 key = { `${ sectionId } -${ rowId } ` }
99- style = { styles . separator }
10099 />
101100 )
102101 }
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class CoursesView extends React.Component {
6161 }
6262
6363 renderSectionHeader = ( courses : CourseType [ ] , term : string ) => {
64- return < ListSectionHeader style = { styles . rowSectionHeader } title = { term } />
64+ return < ListSectionHeader title = { term } />
6565 }
6666
6767 renderSeparator = ( sectionId : string , rowId : string ) => {
@@ -107,7 +107,7 @@ class CoursesView extends React.Component {
107107 onRefresh = { this . refresh }
108108 >
109109 { ( course : CourseType ) =>
110- < ListRow style = { styles . rowContainer } >
110+ < ListRow >
111111 < Column >
112112 < Title > { course . name } </ Title >
113113 < Detail > { course . deptnum } </ Detail >
You can’t perform that action at this time.
0 commit comments