removed console logs
This commit is contained in:
parent
6b51c9ebd0
commit
def4e03707
3 changed files with 0 additions and 3 deletions
|
@ -22,7 +22,6 @@ class ChannelSelector extends React.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
componentWillReceiveProps ({ loggedInChannelName }) {
|
componentWillReceiveProps ({ loggedInChannelName }) {
|
||||||
console.log('ChannelSelector will receive props');
|
|
||||||
if (loggedInChannelName) {
|
if (loggedInChannelName) {
|
||||||
this.selectOption(loggedInChannelName);
|
this.selectOption(loggedInChannelName);
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,6 @@ class Preview extends React.Component {
|
||||||
this.previewFile(this.props.file);
|
this.previewFile(this.props.file);
|
||||||
}
|
}
|
||||||
componentWillReceiveProps (newProps) {
|
componentWillReceiveProps (newProps) {
|
||||||
console.log('Preview will receive props', newProps);
|
|
||||||
this.previewFile(newProps.file);
|
this.previewFile(newProps.file);
|
||||||
}
|
}
|
||||||
previewFile (file) {
|
previewFile (file) {
|
||||||
|
|
|
@ -23,7 +23,6 @@ class UrlChooser extends React.Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
componentWillReceiveProps ({claim: newClaim}) {
|
componentWillReceiveProps ({claim: newClaim}) {
|
||||||
console.log('PublishUrlInput will receive new props (claim)', newClaim);
|
|
||||||
if (newClaim) {
|
if (newClaim) {
|
||||||
this.checkClaimIsAvailable(newClaim);
|
this.checkClaimIsAvailable(newClaim);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue