aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Thread.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-04-11 23:29:04 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:54 +0300
commit485af16ce8c8ac546cefa19f31954cff3208e4f5 (patch)
tree5c0aa706baa417df4841bdb8798bac965515cdbc /vnext/src/components/Thread.js
parentc5c489d4c626deba07d7cb8a3de9db7ecc60d5f3 (diff)
Fix remote usernames in UserLink
Diffstat (limited to 'vnext/src/components/Thread.js')
-rw-r--r--vnext/src/components/Thread.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Thread.js b/vnext/src/components/Thread.js
index ba3fcfa9..1563aa66 100644
--- a/vnext/src/components/Thread.js
+++ b/vnext/src/components/Thread.js
@@ -74,7 +74,7 @@ function Comment({ msg, visitor, active, setActive, postComment }) {
Comment.propTypes = {
msg: MessageType.isRequired,
visitor: UserType.isRequired,
- active: PropTypes.bool.isRequired,
+ active: PropTypes.number.isRequired,
setActive: PropTypes.func.isRequired,
postComment: PropTypes.func.isRequired
};