Browse Source

More homogeneity in .videos

master
Roderic Day 5 years ago
parent
commit
2e67e5371f
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      apps/streams.js

+ 1
- 3
apps/streams.js View File

@@ -176,9 +176,7 @@ const StreamContainer = {
gridTemplateColumns: dims[1],
}
return m('.videos', {style},
m(Video, {username: State.username}),
State.online.filter(username => username != State.username)
.map(username => m(Video, {key: username, username}))
State.online.map(username => m(Video, {key: username, username}))
)
},
}

Loading…
Cancel
Save