about summary refs log tree commit diff
path: root/app/javascript/glitch/components/notification
diff options
context:
space:
mode:
authorOndřej Hruška <ondra@ondrovo.com>2017-09-28 10:04:20 +0200
committerOndřej Hruška <ondra@ondrovo.com>2017-09-28 10:04:20 +0200
commit9a5418942c03f51176faaeec33d2fdc1acc5c30e (patch)
treea3cdf89708c96ef4711b8bd1440c268fbcae2fc2 /app/javascript/glitch/components/notification
parentdaad07b1d552d5af06b4d8443afdbe1350785a14 (diff)
fix some js errors due to number->string change of status ID
Diffstat (limited to 'app/javascript/glitch/components/notification')
-rw-r--r--app/javascript/glitch/components/notification/follow.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/glitch/components/notification/follow.js b/app/javascript/glitch/components/notification/follow.js
index f471307b9..99a5c6219 100644
--- a/app/javascript/glitch/components/notification/follow.js
+++ b/app/javascript/glitch/components/notification/follow.js
@@ -30,7 +30,7 @@ import NotificationOverlayContainer from '../notification/overlay/container';
 export default class NotificationFollow extends ImmutablePureComponent {
 
   static propTypes = {
-    id                   : PropTypes.number.isRequired,
+    id                   : PropTypes.string.isRequired,
     account              : ImmutablePropTypes.map.isRequired,
     notification         : ImmutablePropTypes.map.isRequired,
   };