diff options
author | Vitaly Takmazov | 2018-07-15 18:38:26 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 4f65458afddd80ff0f4a36af0f9a228cd2805072 (patch) | |
tree | deba2b644de0bbd464e72235139eb61403f5552b /vnext/src/App.js | |
parent | e524bc96e440dbd54447da764d34b5bfddee693e (diff) |
Fix navigation from blog to blog
Diffstat (limited to 'vnext/src/App.js')
-rw-r--r-- | vnext/src/App.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index f3f48152..aa159f14 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -215,10 +215,10 @@ export default class App extends React.Component { <li>Comments: {user.statsReplies}</li> </ul> { - user.iread && + user.read && <div className="iread"> { - user.iread.map(u => <Avatar user={u} key={u.uid} />) + user.read.map(u => <Avatar user={u} key={u.uid} />) } </div> } |