Skip to content

Commit 8104fe1

Browse files
committed
expand meeting times on android
1 parent 896a130 commit 8104fe1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

source/views/student-orgs/detail.android.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import React from 'react'
33
import {ScrollView, Text, StyleSheet} from 'react-native'
44
import moment from 'moment'
55
import {HtmlView} from '../components/html-view'
6-
import {Cell} from 'react-native-tableview-simple'
76
import {Card} from '../components/card'
87
import * as c from '../components/colors'
98
import type {StudentOrgType} from './types'
@@ -89,7 +88,7 @@ export class StudentOrgsDetailView extends React.Component {
8988

9089
{meetings
9190
? <Card header="Meetings" style={styles.card}>
92-
<Cell cellStyle="Basic" title={meetings} />
91+
<Text style={styles.cardBody}>{meetings}</Text>
9392
</Card>
9493
: null}
9594

0 commit comments

Comments
 (0)