...
 
Commits (2)
......@@ -75,10 +75,9 @@ exports[`Media view component renders correctly 1`] = `
}
imageStyle={
Object {
"backgroundColor": "transparent",
"backgroundColor": "black",
}
}
loadingIndicator="placeholder"
onError={[Function]}
source={
Object {
......
......@@ -198,7 +198,7 @@ export default class MediaView extends Component {
source={source}
entity={this.props.entity}
style={[styles.image, { height }]}
loadingIndicator="placeholder"
// loadingIndicator="placeholder"
onError={this.imageError}
imageStyle={styles.innerImage}
/>
......@@ -229,7 +229,7 @@ export default class MediaView extends Component {
source={source}
entity={this.props.entity}
style={styles.image}
loadingIndicator="placeholder"
// loadingIndicator="placeholder"
onError={this.imageError}
imageStyle={styles.innerImage}
/>
......@@ -330,7 +330,7 @@ const styles = StyleSheet.create({
flex: 1,
},
innerImage: {
backgroundColor: 'transparent'
backgroundColor: 'black'
},
videoContainer: {
flex: 1,
......
......@@ -268,7 +268,7 @@ class MindsVideo extends Component {
source={image}
entity={entity}
style={[CS.positionAbsolute]}
loadingIndicator="placeholder"
// loadingIndicator="placeholder"
/>
)
}
......