Skip to content

Commit 479bdad

Browse files
committed
fix(EventListItem.js): Show non-string values in the event properties
1 parent 89a9582 commit 479bdad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/eventslistscreen/EventListItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export default class EventsListItem extends Component {
125125
{prop.name}
126126
</Text>
127127
<Text style={[styles.expendedRowValue, {color: textColor}]}>
128-
{prop.value}
128+
{String(prop.value)}
129129
</Text>
130130
</View>
131131
{errorMessageView}

0 commit comments

Comments
 (0)