incorporate channel updateAt into channel counts and pull channel data on channel update

Этот коммит содержится в:
JoramWilander
2015-08-11 08:20:17 -04:00
родитель 6c0fefad15
Коммит 4ec76e059c
5 изменённых файлов: 22 добавлений и 11 удалений

Просмотреть файл

@@ -74,7 +74,7 @@ module.exports = React.createClass({
moreChannels = (
<table className='more-channel-table table'>
<tbody>
{moreChannels.map(function cMap(channel) {
{channels.map(function cMap(channel) {
return (
<tr key={channel.id}>
<td>

Просмотреть файл

@@ -161,7 +161,6 @@ module.exports = React.createClass({
AsyncClient.updateLastViewedAt();
}
} else {
console.log('hit');
AsyncClient.getChannels();
}