Commit 1f3cdb63 authored by santhosh's avatar santhosh
Browse files

build pgtest errors solved

parent eb77ae80
Showing with 6 additions and 7 deletions
+6 -7
......@@ -314,7 +314,7 @@ export default class AdminChatUser extends Component {
messagedBy: userToken,
projectId: projectId,
device_id: this.state.device_id,
player_id:player_id,
player_id:"",
reply_id: this.state.commentDetails.id ? this.state.commentDetails.id : ""
})
......
......@@ -927,7 +927,7 @@ export default class GroupChat extends Component {
<View style={{ flexDirection: 'row' }}>
<View style={styles.inputContainer}>
<TextInput style={styles.inputs}
autoFocus={true}
// autoFocus={true}
placeholder="Message"
underlineColorAndroid='transparent'
multiline={true}
......
......@@ -477,7 +477,7 @@ export default class KudosPoints extends Component {
.then((response) => response.json())
.then((responseJson) => {
console.warn(JSON.stringify(responseJson))
alert(JSON.stringify(responseJson))
// alert(JSON.stringify(responseJson))
if (responseJson.status === 'True') {
var empList = [];
......
......@@ -878,7 +878,6 @@ export default class TaskChat extends Component {
<View style={this.state.handleHover === true ? styles.footer1 : styles.footer}>
{this.state.handleHover === true ?
<View>
// alert(JSON.stringify(this.state.commentDetails))
<View style={styles.itemBottom}>
<View style={{ width: "90%" }}>
<Text style={{ fontSize: 12, color: 'green' }}>{this.state.commentDetails.username}</Text>
......@@ -916,7 +915,7 @@ export default class TaskChat extends Component {
<View style={styles.inputContainer}>
<TextInput style={styles.inputs}
placeholder="Message"
autoFocus={true}
// autoFocus={true}
underlineColorAndroid='transparent'
multiline={true}
onChangeText={(value) => this.setState({ message: value })}
......
......@@ -512,7 +512,7 @@ export default class UserChat extends Component {
<View style={styles.inputContainer}>
<TextInput style={styles.inputs}
placeholder="Message"
autoFocus={true}
// autoFocus={true}
underlineColorAndroid='transparent'
multiline={true}
onChangeText={(value) => this.setState({ message: value })}
......
......@@ -1053,7 +1053,7 @@ export default class UserProfile extends Component {
<View style={{ marginTop: '5%' }}>
<TouchableOpacity onPress={() => this.props.navigation.navigate('UserProfileKudos')}>
<Text style={{ color: 'blue', paddingLeft: '2%' }}>Kudos Poins</Text>
<Text style={{ color: 'blue', paddingLeft: '2%' }}>Kudos Points Summery</Text>
</TouchableOpacity>
</View>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment