fix some js errors due to number->string change of status ID
This commit is contained in:
parent
daad07b1d5
commit
9a5418942c
3 changed files with 4 additions and 4 deletions
|
@ -30,7 +30,7 @@ import NotificationOverlayContainer from '../notification/overlay/container';
|
||||||
export default class NotificationFollow extends ImmutablePureComponent {
|
export default class NotificationFollow extends ImmutablePureComponent {
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
id : PropTypes.number.isRequired,
|
id : PropTypes.string.isRequired,
|
||||||
account : ImmutablePropTypes.map.isRequired,
|
account : ImmutablePropTypes.map.isRequired,
|
||||||
notification : ImmutablePropTypes.map.isRequired,
|
notification : ImmutablePropTypes.map.isRequired,
|
||||||
};
|
};
|
||||||
|
|
|
@ -50,7 +50,7 @@ export default class StatusActionBar extends ImmutablePureComponent {
|
||||||
onEmbed: PropTypes.func,
|
onEmbed: PropTypes.func,
|
||||||
onMuteConversation: PropTypes.func,
|
onMuteConversation: PropTypes.func,
|
||||||
onPin: PropTypes.func,
|
onPin: PropTypes.func,
|
||||||
me: PropTypes.number,
|
me: PropTypes.string,
|
||||||
withDismiss: PropTypes.bool,
|
withDismiss: PropTypes.bool,
|
||||||
intl: PropTypes.object.isRequired,
|
intl: PropTypes.object.isRequired,
|
||||||
};
|
};
|
||||||
|
|
|
@ -155,12 +155,12 @@ export default class Status extends ImmutablePureComponent {
|
||||||
};
|
};
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
id : PropTypes.number,
|
id : PropTypes.string,
|
||||||
status : ImmutablePropTypes.map,
|
status : ImmutablePropTypes.map,
|
||||||
account : ImmutablePropTypes.map,
|
account : ImmutablePropTypes.map,
|
||||||
settings : ImmutablePropTypes.map,
|
settings : ImmutablePropTypes.map,
|
||||||
notification : ImmutablePropTypes.map,
|
notification : ImmutablePropTypes.map,
|
||||||
me : PropTypes.number,
|
me : PropTypes.string,
|
||||||
onFavourite : PropTypes.func,
|
onFavourite : PropTypes.func,
|
||||||
onReblog : PropTypes.func,
|
onReblog : PropTypes.func,
|
||||||
onModalReblog : PropTypes.func,
|
onModalReblog : PropTypes.func,
|
||||||
|
|
Loading…
Reference in a new issue